forked from aanjhan/ubx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (25 loc) · 792 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
from distutils.core import setup
setup(name='ubx-utils',
version='0.1',
scripts=['ask-position.py',
'download1.py',
'enable-raw.py',
'exception1.py',
'interactive1.py',
'memory-map.sh',
'raw-rate-monitor.py',
'raw-with-key-sync.py',
'set-baudrate.py',
'set-fixnowmode.py',
'set-logging-rate.py',
'set-nmea.py',
'set-periodic-logging.py',
'set-periodic-raw-logging.py',
'ubx-extract-pos-gpx.py',
'ubx-extract-raw.py',
'ubx-parse1.py',
'ubx.py',
'upload1.py',
'upload.py',
],
)