-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathpyproject.toml
69 lines (61 loc) · 1.37 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
[tool.pytest.ini_options]
minversion = 6.0
addopts = "-ra -q"
testpaths =[
"tests",
"integration",
]
[tool.poetry]
name = "f1tenth-gym"
version = "0.2.1"
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"
documentation = "https://f1tenth-gym.readthedocs.io/en/latest/"
packages = [
{ include = "f110_gym", from = "gym"},
]
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
gymnasium = "^0.29.1"
numpy = "<=1.25,>=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.25"}
gymnax = "^0.0.6"
[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"
[[tool.poetry.source]]
name = "jorenham/jax_pep503"
url = "https://jorenham.github.io/jax_pep503/"
priority = "supplemental"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"