forked from iiasa/CWatM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (51 loc) · 1.63 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
from setuptools import setup
from pathlib import Path
from cwatm import __version__, __author__, __email__
setup(
name='CWatM',
version=__version__,
description='The Community Water Model: An open source hydrological model',
long_description=Path("README.md").read_text(encoding="utf-8"),
long_description_content_type="text/x-rst",
license='GPLv3',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3',
'Operating System :: OS Independent',
],
url='https://github.com/CWatM',
author=__author__,
author_email=__email__,
packages=[
'cwatm',
'cwatm.hydrological_modules',
'cwatm.hydrological_modules.groundwater_modflow',
'cwatm.hydrological_modules.routing_reservoirs',
'cwatm.hydrological_modules.water_demand',
'cwatm.management_modules'
],
package_data={
'cwatm': [
'metaNetcdf.xml',
],
'cwatm.hydrological_modules': [
'routing_reservoirs/t5.dll',
'routing_reservoirs/t5cyg.so',
'routing_reservoirs/t5_linux.o',
'routing_reservoirs/t5_linux.so',
'routing_reservoirs/t5.cpp',
],
},
zip_safe=True,
install_requires=[
'numpy',
'scipy',
'netCDF4',
'gdal',
'pyflow',
'pytest',
'pytest-html'
],
entry_points={
'console_scripts': ['cwatm=cwatm.run_cwatm:run_from_command_line']
}
)