-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
executable file
·42 lines (37 loc) · 1.12 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
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
with open(path.join(here, 'LICENSE'), encoding='utf-8') as f:
license = f.read()
setup(
name='ams',
version='0.2',
description='Autoware Management System',
long_description=long_description,
url='https://github.com/CPFL/Autoware-Management-System',
author='hiro-ya-iv',
author_email='[email protected]',
license=license,
packages=find_packages(exclude=["config", "res", 'tools', 'docs', 'tests', "examples"]),
install_requires=[
"paho-mqtt==1.3.1",
"python-dotenv==0.7.1",
"transforms3d==0.3.1",
"numpy==1.13.3",
"Flask==0.12.2",
"Flask-Cors==3.0.3",
"Flask-SocketIO==2.9.2",
"Flask-MQTT==0.0.8",
"python-geohash==0.8.5",
"Geohash==1.0",
"eventlet==0.21.0",
"Cerberus==1.1",
"transitions==0.6.4"
],
test_suite="tests"
)