-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
59 lines (52 loc) · 1.89 KB
/
setup.py
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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
from commonroad_crime.__version__ import __version__
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md"), "r", encoding="utf-8") as f:
readme = f.read()
setup(
name="commonroad-crime",
version=__version__,
description="criticality measures of automated vehicles",
keywords="criticality, autonomous driving",
long_description_content_type="text/markdown",
long_description=readme,
author="Technical University of Munich",
author_email="commonroad@lists.lrz.de",
license="BSD 3-Clause",
project_urls={
"Documentation": "https://cps.pages.gitlab.lrz.de/commonroad/commonroad-criticality-measures/",
"Forum": "https://github.com/CommonRoad/commonroad-crime/issues",
"Source": "https://github.com/CommonRoad/commonroad-crime",
},
url="https://commonroad.in.tum.de/tools/commonroad-crime",
packages=find_packages(),
data_files=[(".", ["LICENSE"])],
install_requires=[
"commonroad-io>=2023.4",
"commonroad-vehicle-models>=3.0.0",
"commonroad-route-planner>=2024.2.0, <2025.0",
"commonroad-drivability-checker>=2023.1",
"commonroad-reach==2024.1.2",
"matplotlib>=3.5.2,<3.9",
"numpy>=1.19.0",
"scipy>=1.7.3",
"shapely<3.0.0,>=2.0.1",
"omegaconf>=2.1.1",
"casadi>=3.6.3",
"tqdm>=4.65.0",
"imageio>=2.9.0",
"pytest>=7.4.0",
],
classifiers=[
"Programming Language :: C++",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
],
include_package_data=True,
package_data={"": ["*.yaml"]},
)