forked from martius-lab/depRL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (54 loc) · 1.33 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
[tool.poetry]
name = "deprl"
version = "0.4.0"
description = "DEP-RL, a method for robust control of musculoskeletal systems."
authors = ["Pierre Schumacher <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9, <=3.11.5"
pyyaml = "^6.0"
numpy = "^1.22.4"
termcolor = "^2.2.0"
pandas = "^2.0.1"
gdown = "^5.1.0"
gymnasium = "*"
wandb = "^0.15.4"
# torch = {version="2.1.0", source="pytorch-cpu"}
torch = ">=2.1.0"
[tool.poetry.group.dev.dependencies]
pudb = "*"
pre-commit = "*"
sphinx = "5.3.0"
sphinx-rtd-theme = "^1.2.2"
pytest = "^7.4.0"
sphinx-copybutton = "^0.5.2"
# sconegym = {path = "../sconegym", develop = true}
matplotlib = "^3.8.0"
myosuite = "^2.5.0"
[tool.poetry.scripts]
log = "deprl.log:main"
plot = "deprl.plot:main"
[[tool.poetry.source]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
priority = "explicit"
[tool.black]
line-length = 79
target-version = ["py310"]
[tool.isort]
profile = "black"
filter_files = "True"
line_length = 79
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
[tool.ruff]
ignore = ["C901", "F403", "F405"]
line-length = 120
target-version= "py310"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"