-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (34 loc) · 909 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
import setuptools
setuptools.setup(
name="marlin",
version="0.0.1",
author="Andrea Benfatti",
author_email="[email protected]",
description="Intcatch marlin boat controller for raspberry pi",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
],
install_requires=[
'gps==3.9',
'Flask==1.0.2',
'Flask-Classful==0.14.2',
'singleton-decorator==1.0.0',
'numpy==1.10.4',
'simple_pid==0.1.4',
'pyserial==3.4',
'Adafruit-BNO055==1.0.2',
'utm==0.4.2',
'bitstring==3.1.5',
'python-socketio',
'requests',
'websocket-client',
'PIGPIO',
'spidev'
],
entry_points={
'console_scripts': [
'run = marlin.__main__:main'
]
},
)