forked from f1tenth/f1tenth_gym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (55 loc) · 1.34 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
[tool.pytest.ini_options]
minversion = 6.0
addopts = "-ra"
testpaths = ["tests", "integration"]
[tool.poetry]
name = "f1tenth_gym_jax"
version = "1.0.0dev"
description = "Gym environment for F1TENTH"
license = "MIT"
authors = [
"Hongrui Zheng",
"Renukanandan Tumu",
"Luigi Berducci",
"Ahmad Amine",
"Joseph Auckley",
"Matthew O'Kelly",
"Aman Sinha",
]
maintainers = ["Hongrui Zheng"]
readme = "README.md"
homepage = "https://f1tenth.org"
repository = "https://github.com/f1tenth/f1tenth_gym_jax"
documentation = "https://f1tenth-gym.readthedocs.io/en/latest/"
packages = [{ include = "f1tenth_gym_jax" }]
[tool.poetry.dependencies]
python = ">=3.10"
gymnasium = "^0.29.1"
numpy = ">=1.18"
pillow = ">=9.0.1"
scipy = ">=1.7.3"
numba = ">=0.55.2"
PyYAML = ">=5.3.1"
pygame = "^2.5.2"
opencv-python = "^4.9.0.80"
yamldataclassconfig = "^1.5.0"
requests = "^2.31.0"
shapely = "^2.0.2"
jax = { extras = ["cuda12"], version = "^0.4.34" }
jax-pf = { git = "https://github.com/hzheng40/jax_pf.git" }
flax = "^0.9.0"
chex = "^0.1.87"
pyglet = "^2.0.18"
pyqtgraph = "^0.13.7"
pyqt6 = "^6.7.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.4"
black = "^23.12.1"
ipykernel = "^6.29.0"
isort = "^5.13.2"
autoflake = "^2.2.1"
matplotlib = "^3.8.2"
flake8 = "^7.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"