DarkyCodez/MetaxScaler
0
1[build-system]
2requires = ["hatchling"]
3build-backend = "hatchling.build"
4
5[project]
6name = "metaxscaler"
7version = "0.1.0"
8description = "Agricultural Environment simulation for OpenEnv"
9readme = "README.md"
10requires-python = ">=3.10"
11dependencies = [
12 "fastapi",
13 "uvicorn",
14 "requests",
15 "openai",
16 "openenv-core>=0.2.0"
17]
18
19[project.scripts]
20server = "server.app:main"
21
22[tool.hatch.build.targets.wheel]
23packages = ["server"]