-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
25 lines (24 loc) · 829 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
import setuptools
import os
setuptools.setup(
name='hydroanalysis',
version='1.0.0',
author='Marco Dal Molin',
author_email='[email protected]',
description='Framework for calculating hydrological indices',
long_description=open(os.path.join(os.path.dirname(__file__),
"README.md")).read(),
long_description_content_type='text/markdown',
url='https://hydroanalysis.readthedocs.io/en/latest/',
license='LGPL',
packages=setuptools.find_packages(),
classifiers=[
'Development Status :: 2 - Pre-Alpha', # https://martin-thoma.com/software-development-stages/
'Topic :: Scientific/Engineering :: Hydrology',
],
install_requires=[
'numpy>=1.20.0',
'pandas>=1.2.0',
'scipy>=1.6.0',
],
)