pyproject.toml 509 B

1234567891011121314151617181920212223
  1. [project]
  2. name = "garden-layer"
  3. version = "0.1.0"
  4. description = "Garden-specific helpers that orchestrate MCP calls for your breeding workflows."
  5. readme = "README.md"
  6. authors = [ { name = "Lukas Goldschmidt" } ]
  7. requires-python = ">=3.11"
  8. dependencies = [
  9. "requests>=2.31",
  10. "python-dotenv>=1.0",
  11. ]
  12. [project.optional-dependencies]
  13. test = [
  14. "pytest>=8.4",
  15. ]
  16. [tool.setuptools.packages.find]
  17. where = ["src"]
  18. [build-system]
  19. requires = ["setuptools>=61.0", "wheel"]
  20. build-backend = "setuptools.build_meta"