-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
71 lines (63 loc) · 1.24 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "coltra"
dynamic = ["version"]
description = "Coltra is a simple moddable RL algorithm implementation"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Ariel Kwiatkowski", email = "[email protected]" },
]
dependencies = [
"typarse==3.4.0",
"numpy==1.23.5",
"gymnasium~=0.29.1",
"PyYAML>=6.0",
"torch>=1.13.1",
"tqdm>=4.64.1",
"numba>=0.56.4",
"PettingZoo>=1.22.3",
"supersuit>=3.7.1",
"cloudpickle~=2.2.1",
"pillow~=9.4.0",
"setuptools~=65.6.3",
"optuna~=3.1.0",
"shortuuid==1.0.11",
]
[project.optional-dependencies]
unity = [
"mlagents-envs~=0.28.0",
]
visualization = [
"matplotlib==3.6.3",
"seaborn>=0.12.2",
"ipykernel>=6.20.2"
]
experiments = [
"tensorboard>=2.11.2",
"wandb>=0.13.9",
]
dev = [
"pytest>=7.2.1",
"coverage>=7.1.0",
"jupyter>=1.0.0",
"jupyterlab>=3.5.3",
"pyvirtualdisplay~=3.0",
"black==22.3.0",
"pytype==2023.1.17",
]
extra = [
"jax==0.4.1",
"jaxlib==0.4.1",
"pybullet==3.2.5",
]
[project.urls]
Homepage = "https://github.com/redtachyon/coltra-rl"
[tool.hatch.version]
path = "coltra/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/coltra",
]