pyproject.toml 468 B

123456789101112131415161718192021
  1. [project]
  2. name = "backend"
  3. version = "0.1.0"
  4. description = "Domain Transaction Flow Monitor API"
  5. requires-python = ">=3.11"
  6. dependencies = [
  7. "asyncpg>=0.31.0",
  8. "fastapi>=0.136.1",
  9. "httpx>=0.28.1",
  10. "pydantic-settings>=2.14.1",
  11. "python-dotenv>=1.2.2",
  12. "sqlalchemy[asyncio]>=2.0.49",
  13. "uvicorn[standard]>=0.46.0",
  14. ]
  15. [build-system]
  16. requires = ["hatchling"]
  17. build-backend = "hatchling.build"
  18. [tool.hatch.build.targets.wheel]
  19. packages = ["app"]