-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpyproject.toml
45 lines (38 loc) · 1019 Bytes
/
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
37
38
39
40
41
42
43
44
45
[tool.poetry]
name = "gym-microrts"
version = "0.0.0"
description = ""
authors = ["Costa Huang <[email protected]>"]
exclude = [
"gym_microrts/microrts/build/*",
"gym_microrts/microrts/resources",
"gym_microrts/microrts/src",
"gym_microrts/microrts/data",
"gym_microrts/microrts/lib/*.jar",
]
[tool.poetry.dependencies]
python = ">=3.7.1,<3.10"
gym = "0.23.1"
JPype1 = "^1.3.0"
peewee = "^3.14.8"
spyder = {version = "^5.1.5", optional = true}
PettingZoo = "^1.16.0"
[tool.poetry.dev-dependencies]
poetry-dynamic-versioning = "^0.13.0"
tensorboard = "^2.5.0"
wandb = "^0.12.1"
trueskill = "^0.4.5"
stable-baselines3 = "^1.1.0"
torch = "1.7.1"
pytest = "^6.2.5"
pre-commit = "^2.17.0"
[tool.poetry-dynamic-versioning]
enable = true
[tool.poetry-dynamic-versioning.substitution]
files = ["*/__init__.py"]
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.extras]
spyder = ["spyder"]
cleanrl = ["cleanrl"]