forked from AusClimateService/unseen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (34 loc) · 1.17 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
from setuptools import find_packages, setup
import versioneer
setup(
name="unseen",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="unseen developers",
url="https://github.com/AusClimateService/unseen",
description="A Python library for UNSEEN analysis.",
long_description="A Python library for performing UNSEEN analysis for assessing the likelihood of extreme events.",
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU GENERAL PUBLIC LICENSE",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
install_requires=[
"xarray",
"dask",
],
entry_points={
"console_scripts": [
"fileio = unseen.fileio:_main",
"independence = unseen.independence:_main",
"similarity = unseen.similarity:_main",
"bias_correction = unseen.bias_correction:_main",
"stability = unseen.stability:_main",
"moments = unseen.moments:_main",
"eva = unseen.eva:_main",
]
},
)