pyproject.toml 509 B

1234567891011121314151617181920212223
  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. "bcrypt>=5.0.0",
  9. "fastapi>=0.136.1",
  10. "httpx>=0.28.1",
  11. "pydantic-settings>=2.14.1",
  12. "python-dotenv>=1.2.2",
  13. "redis>=5.2.0",
  14. "sqlalchemy[asyncio]>=2.0.49",
  15. "uvicorn[standard]>=0.46.0",
  16. ]
  17. [build-system]
  18. requires = ["hatchling"]
  19. build-backend = "hatchling.build"
  20. [tool.hatch.build.targets.wheel]
  21. packages = ["app"]