pyproject.toml 488 B

12345678910111213141516171819202122
  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. "redis>=5.2.0",
  13. "sqlalchemy[asyncio]>=2.0.49",
  14. "uvicorn[standard]>=0.46.0",
  15. ]
  16. [build-system]
  17. requires = ["hatchling"]
  18. build-backend = "hatchling.build"
  19. [tool.hatch.build.targets.wheel]
  20. packages = ["app"]