forked from dalymople/ubxtranslator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 1 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
# WARNING: SETUP.PY MODIFIED FOR USE WITH CATKIN BUILD
# DO NOT RUN PYTHON SETUP.PY INSTALL ON THIS FILE
from distutils.core import setup
from catkin_pkg.python_setup import generate_distutils_setup
def readme():
with open('README.md') as f:
return f.read()
setup_args = generate_distutils_setup(
name='ubxtranslator',
version='0.1.1',
description='A lightweight python library for translating UBX packets',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Topic :: Communications'
],
url='http://github.com/dalymople/ubxtranslator',
author='Dalymople',
author_email='[email protected]',
license='GNU GPL v3',
packages=[ 'ubxtranslator',
'ubxtranslator.config'],
package_dir={'' : 'src'},
test_suite='nose.collector',
tests_require=['nose'],
)
setup(**setup_args)