-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
62 lines (52 loc) · 1.65 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
# coding=utf-8
from setuptools import find_packages, setup
def get_version(filename):
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
shell_version = get_version(filename='src/duckietown_world/__init__.py')
setup(name='duckietown-world',
version=shell_version,
download_url='http://github.com/duckietown/duckietown-world/tarball/%s' % shell_version,
package_dir={'': 'src'},
packages=find_packages('src'),
install_requires=[
'numpy',
'PyYAML',
'networkx>=2.2,<3',
'duckietown-serialization-ds1>=1,<2',
'svgwrite',
'PyGeometry>=1.5.6',
'beautifulsoup4>=4.6.3',
'lxml',
'pillow',
'future',
'scipy',
'plotly',
'oyaml',
'markdown',
],
tests_require=[
'comptests',
],
# This avoids creating the egg file, which is a zip file, which makes our data
# inaccessible by dir_from_package_name()
zip_safe=False,
# without this, the stuff is included but not installed
include_package_data=True,
entry_points={
'console_scripts': [
'dt-world-draw-log = duckietown_world.svg_drawing:draw_logs_main',
'dt-world-draw-maps = duckietown_world.svg_drawing:draw_maps_main',
]
}
)