-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
36 lines (32 loc) · 1.14 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[tool.poetry]
name = "cropgym"
version = "0.0.1"
description = "Reinforcement Learning Environment for Crop Management"
authors = ["Wageningen University and Research"]
readme = "README.md"
homepage = "https://cropgym.ai/"
keywords = ["reinforcement learning"]
packages = [
{ include = "pcse_gym" }
]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
gymnasium = "^0.29.1"
pyyaml = "^6.0.1"
numpy = "^1.26.4"
datetime = "^5.5"
pcse = "5.5.6"
stable-baselines3 = { version = "^2.3.2", optional = true }
sb3-contrib = { version = "^2.3.0", optional = true }
matplotlib = { version = "^3.9.0", optional = true }
torch = { version = "^2.3.1", optional = true }
lib-programname = { version = "^2.0.9", optional = true }
tensorboard = { version = "^2.17.0", optional = true }
scipy = { version = "^1.13.1", optional = true }
tqdm = { version = "^4.66.4", optional = true }
pandas = { version = "^2.2.2", optional = true }
[tool.poetry.extras]
sb-integration = ["stable-baselines3", "sb3-contrib", "matplotlib", "torch", "lib-programname", "tensorboard", "scipy", "tqdm", "pandas"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"