chore: initialize monorepo with project scaffolding, configs, and CI setup
This commit is contained in:
33
apps/coordinator-api/pyproject.toml
Normal file
33
apps/coordinator-api/pyproject.toml
Normal file
@ -0,0 +1,33 @@
|
||||
[tool.poetry]
|
||||
name = "aitbc-coordinator-api"
|
||||
version = "0.1.0"
|
||||
description = "AITBC Coordinator API service"
|
||||
authors = ["AITBC Team"]
|
||||
packages = [
|
||||
{ include = "app", from = "src" }
|
||||
]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.11"
|
||||
fastapi = "^0.111.0"
|
||||
uvicorn = { extras = ["standard"], version = "^0.30.0" }
|
||||
pydantic = "^2.7.0"
|
||||
pydantic-settings = "^2.2.1"
|
||||
sqlalchemy = "^2.0.30"
|
||||
aiosqlite = "^0.20.0"
|
||||
sqlmodel = "^0.0.16"
|
||||
httpx = "^0.27.0"
|
||||
python-dotenv = "^1.0.1"
|
||||
slowapi = "^0.1.8"
|
||||
orjson = "^3.10.0"
|
||||
gunicorn = "^22.0.0"
|
||||
aitbc-crypto = {path = "../../packages/py/aitbc-crypto"}
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
pytest = "^8.2.0"
|
||||
pytest-asyncio = "^0.23.0"
|
||||
httpx = {extras=["cli"], version="^0.27.0"}
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=1.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
Reference in New Issue
Block a user