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
37 lines (35 loc) · 1013 Bytes
/
Copy pathsetup.py
File metadata and controls
37 lines (35 loc) · 1013 Bytes
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
from setuptools import find_packages, setup
setup(
name="erdos-pylot",
version="0.1",
author="ERDOS 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"),
packages=find_packages(),
license="Apache 2.0",
install_requires=[
"absl-py",
"cffi",
"gdown",
"erdos>=0.1.1",
"matplotlib==2.2.4",
"networkx==2.2",
"open3d-original",
"opencv-python>=4.1.0.25",
"opencv-contrib-python>=4.1.0.25",
"pid_controller",
"pillow",
"pptk", # TODO(ionel): Fix pptk install (https://github.com/heremaps/pptk/issues/3)
"tensorflow-gpu>=1.12",
"protobuf",
"ray",
"rospkg",
"scikit-image<0.15",
"scipy==1.2.2",
"setproctitle",
"torch==0.4.1",
"torchvision==0.2.1"
],
)