-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (48 loc) · 1.19 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
[tool.poetry]
name = "rnl"
version = "0.3.42"
description = "RNL - Robot Navigation Learning"
authors = ["Nicolasalan <[email protected]>"]
license = "LICENSE"
readme = "README.md"
packages = [{ include = "rnl" }]
[tool.poetry.urls]
documentation = "https://rnl.readthedocs.io"
bugs = "https://github.com/microvault/rnl/issues"
[tool.poetry.dependencies]
python = ">=3.9"
accelerate = ">=0.34.2,<1.1.0"
dill = "^0.3.9"
fastrand = ">=1.3,<3.0"
gymnasium = ">=0.28.1,<0.30.0"
matplotlib = "^3.9.2"
numpy = ">=1.24.2,<3.0.0"
torch = "^2.0.1"
pymunk = "^6.6.0"
scikit-image = "*"
tqdm = "^4.65.0"
numba = ">=0.59.1,<0.61.0"
shapely = ">=1.8,<3.0"
wandb = "0.18.3"
opencv-python = "^4.10.0.84"
scikit-learn = "^1.5.2"
omegaconf = "^2.3.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-cov = ">=4.1,<6.0"
black = "^24.1.1"
isort = "^5.13.2"
ruff = ">=0.2.1,<0.7.0"
codespell = "^2.2.6"
commitizen = "^3.29.1"
pre-commit = "^3.7.0"
# [tool.poetry.group.doc.dependencies]
# furo = "2024.4.27"
# sphinx = "7.3.7"
# sphinx-toolbox = "3.5.0"
# sphinx-notfound-page = "1.0.0"
[tool.pytest.ini_options]
pythonpath = "."
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"