-
Notifications
You must be signed in to change notification settings - Fork 249
/
setup.py
executable file
·74 lines (66 loc) · 1.99 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/env python
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
import platform
import sys
from codecs import open # To use a consistent encoding
from os import path
# Always prefer setuptools over distutils
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
if platform.system() == "Windows":
print("Argoverse currently does not support Windows, please use Linux/Mac OS")
sys.exit(1)
setup(
name="argoverse",
version="1.1.0",
description="",
long_description=long_description,
url="https://www.argoverse.org",
author="Argo AI",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords="self-driving-car dataset-tools",
packages=find_packages(exclude=["tests", "integration_tests", "map_files"]),
package_data={"argoverse": ["argoverse/visualization/data/**/*"]},
include_package_data=True,
python_requires=">= 3.7",
install_requires=[
"colour",
"descartes",
"h5py",
"hydra-core==1.1.0",
"imageio",
"lapsolver",
"matplotlib",
"motmetrics==1.1.3",
"numba",
"numpy==1.19",
"omegaconf==2.1.0",
"opencv-python>=4.1.0.25",
"pandas>=0.23.1",
"pillow",
"polars",
"pyntcloud>=0.1.0",
"scipy>=1.4.0",
"shapely",
"sklearn",
"tqdm",
"typing_extensions",
],
)