-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (26 loc) · 1.16 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_namespace_packages
from tethys_apps.app_installation import find_all_resource_files
from tethys_apps.base.app_base import TethysAppBase
# -- Apps Definition -- #
app_package = 'historical_validation_tool_ecuador'
release_package = f'{TethysAppBase.package_namespace}-{app_package}'
# -- Python Dependencies -- #
dependencies = []
# -- Get Resource File -- #
resource_files = find_all_resource_files(app_package, TethysAppBase.package_namespace)
setup(
name=release_package,
version='2.0',
description='This app combines the observed data and the simulated data from the GEOGloWS ECMWF Streaamflow Services in Ecuador.',
long_description='',
keywords='"Hydrology", "Time Series", "Bias Correction", "Hydrostats", "GEOGloWS", "Historical Validation Tool", "Ecuador"',
author='Jorge Luis Sanchez-Lozano, Karina Larco, Juseth E. Chancay',
author_email='jorgessanchez7@gmail.com, karynina3@gmail.com, juseth.chancay@gmail.com',
url='',
license='',
packages=find_namespace_packages(),
package_data={'': resource_files},
include_package_data=True,
zip_safe=False,
install_requires=dependencies,
)