forked from boatd/boatd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (39 loc) · 1.34 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from subprocess import Popen, PIPE
setup(
name='boatd',
version='3.2.0',
author='Louis Taylor',
author_email='louis@kragniz.eu',
description=('Experimental daemon to control an autonomous sailing robot'),
license='LGPL',
keywords='boat sailing wrapper rest',
url='https://github.com/boatd/boatd',
package_dir = {
'boatd': 'boatd',
'boatd.coreplugins': 'boatd/coreplugins',
'boatd.coreplugins.mavlink_common': 'boatd/coreplugins/mavlink_common',
},
packages=['boatd', 'boatd.coreplugins', 'boatd.coreplugins.mavlink_common'],
scripts=['bin/boatd'],
install_requires=[
'PyYAML',
'six',
'pyserial',
'tornado',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Operating System :: POSIX :: Linux',
'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Embedded Systems',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)