-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
58 lines (52 loc) · 1.32 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
58
from setuptools import setup
with open("README.md", "r") as readme:
long_description = readme.read()
AUTHOR = 'Riley C. Hales'
DESCRIPTION = 'The SABER tool for bias correcting large hydrologic models'
VERSION = '0.9.0'
PYTHON_REQUIRES = '>=3.10'
INSTALL_REQUIRES = [
'contextily',
'fastparquet',
'geopandas',
'hydrostats',
'joblib',
'kneed',
'matplotlib',
'natsort',
'numba',
'numpy',
'pandas',
'pyarrow',
'pyyaml',
'requests',
'scikit-learn',
'scipy',
'seaborn',
'xarray',
'zarr'
]
TROVE_CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Hydrology',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Scientific/Engineering :: GIS',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
]
setup(
name='saber-hbc',
packages=['saber', ],
version=VERSION,
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
author=AUTHOR,
license='BSD 3-Clause',
classifiers=TROVE_CLASSIFIERS,
python_requires=PYTHON_REQUIRES,
install_requires=INSTALL_REQUIRES
)