pyproject.toml 995 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [build-system]
  2. requires = ["hatchling"]
  3. build-backend = "hatchling.build"
  4. [project]
  5. name = "supply-agent"
  6. version = "0.1.0"
  7. description = "A modern, extensible AI Agent framework with OpenRouter, Tools, and Skills support"
  8. readme = "README.md"
  9. requires-python = ">=3.11"
  10. dependencies = [
  11. "openai>=1.50.0",
  12. "pydantic>=2.0",
  13. "pydantic-settings>=2.0",
  14. "httpx>=0.27.0",
  15. "rich>=13.0",
  16. "sqlalchemy>=2.0",
  17. "pymysql>=1.1",
  18. "apscheduler>=3.10",
  19. "python-dotenv>=1.0",
  20. "oss2>=2.18.0",
  21. ]
  22. [project.optional-dependencies]
  23. odps = ["pyodps>=0.12"]
  24. dev = [
  25. "pytest>=8.0",
  26. "pytest-asyncio>=0.24",
  27. "ruff>=0.8",
  28. ]
  29. [tool.hatch.build.targets.wheel]
  30. packages = ["supply_agent", "supply_infra", "agents"]
  31. [project.scripts]
  32. supply-scheduler = "supply_infra.scheduler.app:run_scheduler"
  33. supply-visualize = "supply_agent.logging.cli:main"
  34. [tool.ruff]
  35. line-length = 100
  36. target-version = "py311"
  37. [tool.pytest.ini_options]
  38. asyncio_mode = "auto"
  39. testpaths = ["tests"]