-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (32 loc) · 925 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
from setuptools import setup
setup(
name='sumo-web3d',
version='1.0.1',
description='Web-based 3D Visualization of SUMO Traffic Simulator',
long_description='See README.md on GitHub: https://github.com/sidewalklabs/sumo-web3d/',
author='Sidewalk Labs',
author_email='[email protected]',
url='https://github.com/sidewalklabs/sumo-web3d/',
entry_points={
'console_scripts': [
'sumo-web3d = backend.server.server:run',
],
},
# include_package_data=True,
# package_data={
# 'static': 'sumo_web3d/static/*',
# 'scenarios': 'sumo_web3d/scenarios/*',
# 'scenarios.json': 'sumo_web3d/scenarios.json'
# },
packages=[
'backend',
'backend.server',
],
install_requires=[
'aiohttp>=2.2',
'chardet>=3.0',
'lxml>=3.8',
'websockets>=3.4',
'xmltodict>=0.11',
],
)