-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
52 lines (43 loc) · 1.58 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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.isort]
profile = "black"
[tool.poetry]
authors = ["Côme Perrot <[email protected]>"]
description = "Tools to do Reinforcement Learning on Talos"
license = "BSD-2-Clause"
maintainers = ["Guilhem Saurel <[email protected]>"]
name = "talos-rl"
packages = [{include = "gym_talos"}]
readme = "README.md"
version = "0.1.0"
[tool.poetry.dependencies]
example-robot-data = {optional = true, version = "^4.0.7"}
pybullet = {optional = true, version = "^3.2.5"}
python = "^3.8"
pyyaml = {optional = true, version = "^6.0"}
stable-baselines3 = {allow-prereleases = true, optional = true, version = "^2.0.0a10"}
tensorboard = {optional = true, version = "^2.13.0"}
torch = {optional = true, source = "torch-cpu", version = "^2.0.1"}
[tool.poetry.extras]
deps = ["example-robot-data", "pybullet", "pyyaml", "stable-baselines3", "tensorboard", "torch"]
[[tool.poetry.source]]
name = "torch-cpu"
priority = "explicit"
url = "https://download.pytorch.org/whl/cpu"
[tool.poetry2conda]
name = "talos-rl"
[tool.poetry2conda.dependencies]
example-robot-data = {channel = "conda-forge"}
pybullet = {channel = "conda-forge"}
pyyaml = {channel = "conda-forge"}
stable-baselines3 = {channel = "pip"} # because pre-release are not available on canda
tensorboard = {channel = "conda-forge"}
torch = {channel = "pytorch", name = "pytorch"}
[tool.ruff]
extend-ignore = ["D203", "D213"]
extend-select = ["A", "B", "C", "COM", "DJ", "EM", "EXE", "G", "PTH", "RET", "RUF", "UP", "W", "YTT"]
target-version = "py38"
[tool.tomlsort]
all = true