-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (30 loc) · 818 Bytes
/
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
from setuptools import setup
def get_version(filename: str):
import ast
version = None
with open(filename) as f:
for line in f:
if line.startswith("__version__"):
version = ast.parse(line).body[0].value.s
break
else:
raise ValueError("No version found in %r." % filename)
if version is None:
raise ValueError(filename)
return version
version = get_version(filename="duckietown_rl/__init__.py")
setup(
name="duckietown_rl",
version=version,
packages=["duckietown_rl"],
install_requires=[
"gym==0.15.4",
"gym_duckietown_agent>=2018.08",
"hyperdash", # for logging
"sklearn",
"torch",
"numpy",
"matplotlib",
"scipy<=1.2.1",
],
)