-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
83 lines (73 loc) · 2.25 KB
/
setup.py
File metadata and controls
83 lines (73 loc) · 2.25 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
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
75
76
77
78
79
80
81
82
83
# coding=utf-8
import sys
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
version = get_version(filename="src/duckietown_world/__init__.py")
install_requires = [
"pyyaml-include>=1.2,<2",
"numpy",
"PyYAML",
"networkx>=2.2,<3",
"duckietown-serialization-ds1<2",
"svgwrite",
"PyGeometry-z6>=2.0.4",
"beautifulsoup4>=4.6.3,<=4.7.1",
"lxml",
"pillow",
"future",
"scipy",
"plotly",
"oyaml",
"markdown",
"zuper-ipce-z6",
"zuper-typing-z6>=6.0.66",
"zuper-commons-z6",
"six",
"PyContracts3",
"trimesh",
"gltflib",
"pyrender",
"coloredlogs",
"colorama",
"aido-protocols-daffy",
]
tests_require = ["comptests-z6", "compmake-z6>=6.1.1"]
system_version = tuple(sys.version_info)[:3]
if system_version < (3, 7):
install_requires.append("dataclasses")
line = "ente"
setup(
name=f"duckietown-world-{line}",
version=version,
download_url="http://github.com/duckietown/duckietown-world/tarball/%s" % version,
package_dir={"": "src"},
packages=find_packages("src"),
install_requires=install_requires,
tests_require=tests_require,
# 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",
"dt-world-export-gltf = duckietown_world.gltf:gltf_export_main",
"dt-make-scenarios =duckietown_world.world_duckietown.sampling:make_scenario_main",
"dt-compile-textures=duckietown_world.world_duckietown.compile_textures:compile_textures_main",
]
},
)