-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (46 loc) · 1.25 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
from setuptools import setup
with open('README.md') as f:
readme = f.read()
setup(
name="swafi",
version="0.1.0",
author="Pascal Horton",
author_email="[email protected]",
description="Surface Water Flood Impact",
long_description=readme,
long_description_content_type="text/markdown",
packages=['swafi',
'swafi.utils'],
package_dir={'swafi': 'swafi',
'swafi.utils': 'swafi/utils',
},
zip_safe=False,
extras_require={"test": ["pytest>=6.0"]},
python_requires=">=3.8",
install_requires=[
'numpy==1.*',
'PyYAML',
'pandas==2.*',
'rasterio',
'tqdm',
'pyarrow',
'scikit-learn',
'tensorflow[and-cuda]',
'keras',
'xarray',
'dask',
'netcdf4',
'rioxarray',
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
readme="README.md",
project_urls={
"Source Code": "https://github.com/pascalhorton/surface-water-flood-impact",
"Bug Tracker": "https://github.com/pascalhorton/surface-water-flood-impact/issues",
},
license="MIT",
)