forked from iiasa/Lisflood_preprocessing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 874 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
31
32
from setuptools import setup, find_packages
def read_version():
with open("VERSION") as version_file:
return version_file.read().strip()
setup(
name='lisflood-preprocessing',
version=read_version(),
packages=find_packages(where='src'),
package_dir={'': 'src'},
entry_points={
'console_scripts': [
'lfcoords=lisfloodpreprocessing.lfcoords:main',
],
},
install_requires=[
'geopandas',
'numpy',
'pandas',
'tqdm',
'pyflwdir',
'pygeos',
'pyyaml',
'rioxarray',
'xarray',
],
author='Peter Burek, Jesús Casado Rodríguez',
author_email='[email protected], [email protected]',
description='Package to preprocess inputs of the hydrological model LISFLOOD.',
keywords='hydrology lisflood stations',
)