first commit

This commit is contained in:
龙澳
2026-03-23 14:18:24 +08:00
parent 99bf38bcde
commit 7045866ef3
7 changed files with 828 additions and 177 deletions

19
pyproject.toml Normal file
View File

@@ -0,0 +1,19 @@
[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*"]