-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 970 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
from setuptools import setup, find_packages
setup(
name='pyndat',
version='0.0.2',
packages=find_packages(include=['pyndat']),
license='Apache License 2.0',
description='A toolbox for analyzing hydrological drought',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Savalan Naser Neisary',
author_email='[email protected]',
url='https://github.com/savalann/pydat',
python_requires='>=3.9',
install_requires=[
'numpy>=1.26.4',
'pandas>=2.2.1',
'matplotlib>=3.8.0',
'dataretrieval>=1.0.6',
],
keywords=['Drought Analysis', 'Hydrology'],
classifiers=[
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux"
]
)