-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (45 loc) · 1.45 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
[tool.poetry]
name = "commonroad-reactive-planner"
version = "2024.1"
description = "CommonRoad Reactive Planner: Sampling-based Frenet Planner"
authors = ["Cyber-Physical Systems Group, Technical University of Munich <[email protected]>"]
license = "BSD"
readme = "README.md"
homepage = "https://commonroad.in.tum.de"
keywords= ["autonomous", "automated", "vehicles", "driving", "motion", "planning"]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux"
]
packages = [{include = "commonroad_rp"}]
[tool.poetry.urls]
Source = "https://gitlab.lrz.de/tum-cps/commonroad-reactive-planner"
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
matplotlib = ">=2.2.2"
networkx = ">=2.2"
numpy = ">=1.22"
methodtools = "^0.4.5"
omegaconf = ">=2.1.1"
scipy = ">=1.5.2"
imageio = ">=2.13.5"
triangle = ">=20230923"
commonroad-route-planner = ">=2024.1.1"
commonroad-io = ">=2023.2"
commonroad-drivability-checker = ">=2024.1"
commonroad_vehicle_models = ">=3.0.2"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = ">=2.2.1"
[tool.poetry.group.tests]
optional = true
[tool.poetry.group.tests.dependencies]
pytest = ">=6.2.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"