-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 1.06 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
from setuptools import setup, find_packages
__version__ = '1.0.1'
setup(
name='trios',
version=__version__,
packages=find_packages(exclude=['build']),
package_data={'': ['*.so'],
# # If any package contains *.txt files, include them:
# '': ['*.txt'],
# 'lut': ['data/lut/*.nc'],
# 'aux': ['aux/*']
},
include_package_data=True,
url='https://gitlab.irstea.fr/telquel-obs2co/insitu/trios',
license='MIT',
author='T. Harmel',
author_email='[email protected]',
description='Package to help trios TriOS radiometer data for various above-water or in-water setups',
# TODO update Dependent packages (distributions)
install_requires=['pandas','cmocean','dash','dash_core_components','dash_html_components','pandas', 'xarray','scipy', 'numpy',
'pyodbc', 'netCDF4', 'matplotlib', 'docopt', 'python-dateutil','plotly'],
entry_points={
'console_scripts': [
'trios_processing = trios.main:main',
'trios_visual = visu.data_visu:main'
]}
)