| 12345678910111213141516171819202122 |
- [project]
- name = "backend"
- version = "0.1.0"
- description = "Domain Transaction Flow Monitor API"
- requires-python = ">=3.11"
- dependencies = [
- "asyncpg>=0.31.0",
- "fastapi>=0.136.1",
- "httpx>=0.28.1",
- "pydantic-settings>=2.14.1",
- "python-dotenv>=1.2.2",
- "redis>=5.2.0",
- "sqlalchemy[asyncio]>=2.0.49",
- "uvicorn[standard]>=0.46.0",
- ]
- [build-system]
- requires = ["hatchling"]
- build-backend = "hatchling.build"
- [tool.hatch.build.targets.wheel]
- packages = ["app"]
|