-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
67 lines (65 loc) · 1.72 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
63
64
65
66
67
from setuptools import setup
CLASSIFIERS = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Atmospheric Science",
]
setup(
name="pavics_sdi",
version="0.1",
url="https://pavics-sdi.readthedocs.io",
install_requires=[],
extras_require={
"docs": [
"aiohttp",
"birdhouse-birdy",
"cartopy",
"cf-xarray",
"clisops",
"dask",
"esgf-pyclient",
"geopandas",
"holoviews",
"intake",
"intake-esm",
"ipyleaflet",
"ipython",
"jinja2",
"jupyter",
"jupytext",
"matplotlib",
"myst-nb",
"myst-parser",
"nbval",
"netcdf4",
"numba",
"owslib",
"pyogrio",
"readthedocs-sphinx-ext",
"requests",
"requests-magpie",
"siphon",
"sphinx-codeautolink",
"sphinx-copybutton",
"sphinx-intl",
"sphinx-jsonschema",
"sphinx-rtd-theme>=1.0",
"sphinx>=1.4",
"urllib3",
"urlpath",
"webob",
"xarray",
"xclim>=0.45.0",
"xesmf",
]
},
author="CRIM/Ouranos",
author_email="[email protected]",
description="Scientific gateway for climate data analytics.",
long_description=open("README.rst").read(),
license="BSD",
classifiers=CLASSIFIERS,
)