-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
executable file
·57 lines (51 loc) · 1.22 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
#!/usr/bin/env python3
from distutils.core import setup
from tank_core import __version__, __author__
README_CONTENT = open('readme.md','r').read()
SCRIPTS = [
'scripts/tank_cmd.py',
'scripts/cpc_et.py',
'scripts/gefs_download.py'
]
PACKAGES = [
'tank_core'
]
REQUIRED_PACKAGES = [
'numpy',
'scipy',
'pandas',
'pyscissor',
'click',
'matplotlib',
'tabulate',
'pathlib',
'pytest',
'python-dateutil',
'pytz',
'seaborn'
]
KEYWORDS = [
'hydrology',
'rainfall-runoff-model',
'hydrologic-model'
'tank-model',
'tank-hydrologic-model',
]
setup(
name='tank-hydrological-model',
version= __version__,
author= __author__,
packages= PACKAGES,
scripts = SCRIPTS,
test_suite = 'tests',
license = 'MIT',
python_requires = '>=3.6',
description= 'Python implementation of Tank Hydrologic Model, a conceptual rainfall-runoff model proposed by Sugawara and Funiyuki (1956)',
long_description = README_CONTENT,
long_description_content_type = 'text/markdown',
keywords = KEYWORDS,
url = 'https://github.com/nzahasan/tank-model',
include_package_data = True,
zip_safe = False,
install_requires= REQUIRED_PACKAGES
)