23 lines
504 B
TOML
23 lines
504 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "secretary-api"
|
|
version = "0.1.0"
|
|
description = "BARON Office Support System FastAPI backend"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"alembic>=1.16.4",
|
|
"fastapi>=0.116.1",
|
|
"python-multipart>=0.0.20",
|
|
"pydantic-settings>=2.10.1",
|
|
"pymysql>=1.1.1",
|
|
"sqlalchemy>=2.0.42",
|
|
"uvicorn[standard]>=0.35.0",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["app*"]
|