forked from gchustz/UBX_ROS_DRIVER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (28 loc) · 988 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
# 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='UBX_ROS_DRIVER',
version='0.1.0',
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/gchustz/UBX_ROS_DRIVER',
author='George Chustz',
author_email='[email protected]',
license='GNU GPL v3',
packages=[ 'UBX_ROS_DRIVER'],
package_dir={'' : 'src'},
test_suite='nose.collector',
tests_require=['nose'],
)
setup(**setup_args)