forked from teresaupdyke/qccodar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (51 loc) · 1.49 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import setup, find_packages
import sys
__version__ = '2.0.1'
install_requires = [
'docopt',
'numpy',
'geopy',
'hfradarpy',
]
qcviz_requires=[
'matplotlib',
'ipython'
]
tests_requires= [
'nose',
]
setup(name='qccodar',
version=__version__,
description="Apply quality controls to improve CODAR output",
long_description="",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
],
keywords='qc codar radials currents ocean science data',
author='Sara Haines, Teresa Updyke',
author_email='[email protected]',
maintainer='Teresa Updyke',
maintainer_email='[email protected]',
url='http://nccoos.unc.edu',
license='GNU',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
namespace_packages=["qccodar", "qccodar.test"],
install_requires=install_requires,
extras_require={
'tests' : tests_requires,
},
test_suite="qccodar.test",
entry_points="""
[console_scripts]
qccodar = qccodar.app:main
""",
data_files=[('config', ['src/qccodar/config/qccodar.plist']),
('file_formats',['src/qccodar/file_formats/radialshort_LLUV_RDL7.ruv']),
('file_formats',['src/qccodar/file_formats/radial_LLUV_RDL9.ruv'])
]
#scripts=['qccodar/qcviz/qcviz.py']
)