forked from erdos-project/pylot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (38 loc) · 1.12 KB
/
setup.py
File metadata and controls
39 lines (38 loc) · 1.12 KB
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
from setuptools import find_packages, setup
setup(
name="erdos-pylot",
version="0.3",
author="Pylot Team",
description=("A platform for developing autonomous vehicles."),
long_description=open("README.md").read(),
url="https://github.com/erdos-project/pylot",
keywords=("autonomous vehicles driving python carla simulation"),
packages=find_packages(),
license="Apache 2.0",
install_requires=[
"absl-py",
"cvxpy",
"erdos>=0.3.0",
"gdown",
"lapsolver",
"matplotlib==2.2.4",
"networkx==2.2",
"numpy<1.17", # Update to newer numpy version once we switch to tf2
"open3d-python==0.5.0.0",
"opencv-python>=4.1.0.25",
"opencv-contrib-python>=4.1.0.25",
"pillow>=6.2.2",
"pygame",
"pytest",
"scikit-image<0.15",
"scipy==1.2.2",
"shapely==1.6.4",
"tensorflow-gpu==1.15.2",
"torch==1.3.1",
"torchvision==0.2.1",
##### Sort tracking dependencies ####
"filterpy==1.4.1",
"numba==0.50.0",
"scikit-learn==0.20.0",
],
)