| 1234567891011121314151617181920212223 |
- [project]
- name = "garden-layer"
- version = "0.1.0"
- description = "Garden-specific helpers that orchestrate MCP calls for your breeding workflows."
- readme = "README.md"
- authors = [ { name = "Lukas Goldschmidt" } ]
- requires-python = ">=3.11"
- dependencies = [
- "requests>=2.31",
- "python-dotenv>=1.0",
- ]
- [project.optional-dependencies]
- test = [
- "pytest>=8.4",
- ]
- [tool.setuptools.packages.find]
- where = ["src"]
- [build-system]
- requires = ["setuptools>=61.0", "wheel"]
- build-backend = "setuptools.build_meta"
|