-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (39 loc) · 1.23 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
[project]
name = "commonroad-velocity-planner"
version = "0.1.1"
description = "CommonRoad Velocity Planner Toolbox"
authors = [{name = "Tobias Mascetta", email = "<tobias.mascetta@tum.de>"} , {name = "Kilian Northoff", email= "<kilian.northoff@tum.de"}]
license = "BSD"
readme = "README.md"
keywords= ["autonomous", "automated", "vehicles", "driving", "motion", "planning", "velocity"]
classifiers = [
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
]
requires-python = "^3.9"
dynamic = ["dependencies"]
packages = [{include = "commonroad_velocity_planner"}]
# Dependencies
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
commonroad-io = ">=2022.2"
commonroad-route-planner = "^2025.0.1"
numpy = ">=1.17.4,<2.0"
cvxpy = "^1.4"
matplotlib = "<3.9"
# test
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
coverage = {version = "^7.1.0", extras = ["toml"] }
commonroad-reactive-planner = "^2024.1"
# docs
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocstrings-python = "^1.8.0"
mkdocs-material = "^9.5.10"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"