-
Notifications
You must be signed in to change notification settings - Fork 73
/
setup.py
43 lines (39 loc) · 1.31 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
42
43
from __future__ import absolute_import, print_function
import setuptools
import glob
version = '0.1.0'
scripts = []
scripts.extend(glob.glob('ublox/tools/*.py'))
scripts.extend(glob.glob('ublox/mga/tools/*.py'))
scripts.extend(glob.glob('ublox/mga/offline/tools/*.py'))
setuptools.setup(
name = 'pyublox',
version = version,
description = 'Python UBlox tools',
long_description = ('Libraries and utilities for working with uBlox GPS units'),
url = 'https://github.com/tridge/pyUblox/',
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', # TBC with tridge! No license exists at
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering'
],
license='GPLv3',
packages = [ 'ublox',
'ublox.util',
'ublox.mga',
'ublox.mga.dbd',
'ublox.mga.offline',
],
install_requires=[
'future',
],
scripts=scripts,
entry_points = {
"console_scripts": [
],
},
)