20 lines
410 B
TOML
20 lines
410 B
TOML
[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*"]
|