Files
nanobot-auth/pyproject.toml

20 lines
410 B
TOML
Raw Normal View History

2026-03-23 14:18:24 +08:00
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nanobot-auth-service"
version = "0.1.0"
description = "Standalone auth service for nanobot web channel"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.116.0",
"uvicorn>=0.35.0",
"PyJWT>=2.8.0"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["app*"]