-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
28 lines (24 loc) · 836 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='ubxtranslator',
version='0.2.4',
description='A lightweight python library for translating UBX packets',
long_description=readme(),
long_description_content_type="text/markdown",
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'],
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose'],
)