pyproject.toml 699 B

1234567891011121314151617181920212223242526272829303132333435
  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. ]
  17. [project.optional-dependencies]
  18. dev = [
  19. "pytest>=8.0",
  20. "pytest-asyncio>=0.24",
  21. "ruff>=0.8",
  22. ]
  23. [tool.hatch.build.targets.wheel]
  24. packages = ["supply_agent"]
  25. [tool.ruff]
  26. line-length = 100
  27. target-version = "py311"
  28. [tool.pytest.ini_options]
  29. asyncio_mode = "auto"
  30. testpaths = ["tests"]