forked from monocongo/climate_indices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (37 loc) · 1.27 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
from setuptools import setup
setup(
name='climate_indices',
version='0.1.0',
url='https://github.com/monocongo/climate_indices',
license='BSD',
author='James Adams',
author_email='[email protected]',
description=('Community reference implementations of climate index '
'algorithms in Python. Including Palmers (PDSI, scPDSI, '
'PHDI, and Z-Index), SPI, SPEI, PET, and PNP.'),
packages=['climate_indices'],
install_requires=[
"netcdf4",
"numba",
"numpy",
"pandas",
"scipy",
],
tests_require=[
"nose",
],
test_suite='tests',
keywords=('indices climate climate_indices drought drought_indices pdsi '
'spi spei evapotranspiration'),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Topic :: Scientific/Engineering :: Physics',
],
)