-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (42 loc) · 1.29 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
[tool.poetry]
name = "diverserl"
version = "0.0.1"
description = "Diverse Reinforcement Learning algorithms that can be applied to wide variety of environments"
authors = ["Yoonhee Gil <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.12,<3.13"
#torch = "^2.1.0"
torch = [
{platform='win32', version='^2.1.0', source="pytorch-gpu-src"},
{platform='darwin', version='^2.1.0', source = "pypi"},
{platform='linux', version='^2.1.0', source = "pypi"}
]
jax = {extras = ["cpu"], version = "^0.4.18"}
gymnasium = {version="^1.0.0", extras=['all']}
AutoROM = {version = ">=0.4.2,<0.5.0", extras = ["accept-rom-license"]}
jupyter = "^1.0.0"
rich = "^13.6.0"
tensorboard = "^2.15.1"
wandb = "^0.18.5"
hydra-core = ">=1.3"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.5.0"
isort = "^5.12.0"
black = "^23.10.1"
[tool.poetry.group.envs]
optional = true
[tool.poetry.group.envs.dependencies]
#shimmy version restricted due to gymnasium 0.29.1
shimmy = {version=">=2.0.0", extras=['dm-control']}
[[tool.poetry.source]]
name = "pytorch-gpu-src"
url = "https://download.pytorch.org/whl/cu118"
priority = "explicit"
[tool.black]
line-length = 120
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"