forked from MarineDataTools/pynortek
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (17 loc) · 727 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (17 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
import os
ROOT_DIR='pynortek'
with open(os.path.join(ROOT_DIR, 'VERSION')) as version_file:
version = version_file.read().strip()
setup(name='pynortek',
version=version,
description='Tool to parse Nortek data files',
url='https://github.com/MarineDataTools/pynortek',
author='Peter Holtermann',
author_email='peter.holtermann@io-warnemuende.de',
license='GPLv03',
packages=['pynortek'],
scripts = [],
entry_points={'console_scripts': ['pynortek_time=pynortek.nortek_time:main','pynortek_time_gui=pynortek.nortek_time:gui','pynortek_vec2nc=pynortek.pynortek_binary:vec2nc']},
package_data = {'':['VERSION']},
zip_safe=False)