-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (38 loc) · 1.41 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
[tool.poetry]
name = "commonroad-all"
version = "0.1.0"
description = "Meta-Package for installing all CommonRoad Tools"
authors = ["Cyber-Physical Systems Group, Technical University of Munich <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
keywords= ["autonomous", "automated", "vehicles", "driving", "motion", "planning", "simulation", "map", "scenario"]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
# "Programming Language :: Python :: 3.11",
# "Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
# "Operating System :: MacOS",
# "Operating System :: Microsoft :: Windows"
]
packages = [{include = "commonroad_all"}]
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
commonroad-io = "2023.3"
commonroad-vehicle-models = "3.0.2"
commonroad-drivability-checker = "2023.1"
commonroad-dataset-converter = "2023.2"
sumocr = "2023.2"
commonroad-scenario-designer = "0.8.0"
commonroad-route-planner = "2022.3"
commonroad-crime = "0.3.0"
commonroad-reach = "2023.1.1"
# commonroad-openscenario-converter = "0.1.0"
# commonroad-rl = "2023.1.3"
# crgeo = "0.1.1"
# commonroad-geometric = "0.1.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"