-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 833 Bytes
/
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
setup(
name='lisflood-reservoirs',
version='0.1.1',
packages=find_packages(where='src'),
package_dir={'': 'src'},
entry_points={
'console_scripts': [
'simulate=lisfloodreservoirs.simulate:main',
'calibrate=lisfloodreservoirs.calibrate:main',
],
},
install_requires=[
'numpy',
'pandas',
'xarray',
'matplotlib',
'seaborn',
'cartopy',
'statsmodels',
'tqdm',
'pyyaml',
'spotpy'
],
author='Jesús Casado Rodríguez',
author_email='[email protected]',
description='Package to simulate reservoir operations according to different modelling routines.',
keywords='hydrology reservoir simulation calibration',
)