CoolFace
Apppublic

Yalpha/AGRITECH-META

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
pyproject.toml27 linesDownload Raw Back to root
1[build-system]2requires = ["setuptools>=68.0", "wheel"]3build-backend = "setuptools.backends._legacy:_Backend"4 5[project]6name = "agridecisionenv-v3"7version = "3.0.0"8description = "Sustainable Farming Decision Environment for reinforcement learning"9requires-python = ">=3.10"10dependencies = [11    "pydantic>=2.0",12    "openai>=1.0",13    "openenv-core",14    "fastapi>=0.110.0",15    "uvicorn>=0.29.0",16    "python-dotenv>=1.0.0",17]18 19[project.scripts]20server = "server.app:main"21 22[project.entry-points."openenv"]23server = "server.app:app"24 25[project.optional-dependencies]26dev = ["pytest>=7.0"]27