forked from monocongo/climate_indices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (59 loc) · 1.95 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
59
60
61
62
import pathlib
from setuptools import find_packages, setup
# the directory containing this file
BASE_DIR = pathlib.Path(__file__).parent
# the text of the README file
README = (BASE_DIR / "README.md").read_text()
setup(
name="climate_indices",
version="1.0.10",
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."
),
long_description=README,
long_description_content_type="text/markdown",
package_dir={'': 'src'},
packages=find_packages(where='src'),
include_package_data=True,
python_requires=">=3.6",
install_requires=[
"dask",
"nco",
"netcdf4",
"numba",
"numpy",
"scipy",
"toolz",
"xarray",
],
keywords=[
"indices", "climate", "climate indices", "drought",
"drought indices", "pdsi ", "spi", "spei", "evapotranspiration",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
'License :: OSI Approved :: BSD License',
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Physics",
],
entry_points={
"console_scripts": [
"process_climate_indices=climate_indices.__main__:main",
"spi=climate_indices.__spi__:main",
]
},
)