pyproject.toml 975 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. ]
  21. [project.optional-dependencies]
  22. odps = ["pyodps>=0.12"]
  23. dev = [
  24. "pytest>=8.0",
  25. "pytest-asyncio>=0.24",
  26. "ruff>=0.8",
  27. ]
  28. [tool.hatch.build.targets.wheel]
  29. packages = ["supply_agent", "supply_infra", "agents"]
  30. [project.scripts]
  31. supply-scheduler = "supply_infra.scheduler.app:run_scheduler"
  32. supply-visualize = "supply_agent.logging.cli:main"
  33. [tool.ruff]
  34. line-length = 100
  35. target-version = "py311"
  36. [tool.pytest.ini_options]
  37. asyncio_mode = "auto"
  38. testpaths = ["tests"]