-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathsetup.py
149 lines (128 loc) · 3.46 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#!/usr/bin/env python3
# (C) Copyright 2020 ECMWF.
#
# This software is licensed under the terms of the Apache Licence Version 2.0
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
# In applying this licence, ECMWF does not waive the privileges and immunities
# granted to it by virtue of its status as an intergovernmental organisation
# nor does it submit to any jurisdiction.
#
import io
import os.path
import sys
import setuptools
def read(fname):
file_path = os.path.join(os.path.dirname(__file__), fname)
return io.open(file_path, encoding="utf-8").read()
version = None
lines = read("climetlab/version").split("\n")
if lines:
version = lines[0]
assert version
numpy = "numpy"
pandas = "pandas"
dask = "dask"
if sys.version_info < (3, 8):
if not os.environ.get("CLIMETLAB_RUN_UNSUPPORTED_PYTHON_VERSION"):
raise Exception(
"Python version "
+ str(sys.version_info)
+ " is not supported. Python 3.8 is required."
)
install_requires = []
if sys.version_info < (3, 7):
install_requires += [
"numpy<1.20",
"pandas==1.1.5",
"dataclasses", # Needed by dask
"xarray",
]
else:
install_requires += ["numpy", "pandas", "xarray>=0.19.0"]
install_requires += [
# need to install to avoid conflict between aiohttp (dependency of s3fs) and requests (cdsapi)
# "chardet>=3.0,<4.0",
# "aiohttp>=3.7.2",
# --
"requests",
# "zarr",
# "s3fs",
"dask",
"netcdf4",
"cfgrib>=0.9.10.1",
"cdsapi",
"ecmwf-api-client>=1.6.1",
"multiurl>=0.1.0",
"ecmwf-opendata>=0.1.2",
"tqdm",
"eccodes>=1.3.0",
"magics>=1.5.6",
"ecmwflibs",
"pdbufr",
"pyodc",
"toolz",
"filelock",
"pyyaml",
"markdown",
"termcolor",
"entrypoints",
"branca",
"imageio",
"numpngw",
]
extras_require = {
"interactive": [
"skinnywms",
"folium>=0.12.1",
],
"tensorflow": [
"tensorflow",
],
"zarr": [
"zarr",
"s3fs",
],
}
full = []
for k, v in extras_require.items():
full += v
full += install_requires
extras_require["full"] = full
setuptools.setup(
name="climetlab",
version=version,
author="ECMWF",
author_email="software.support@ecmwf.int",
license="Apache 2.0",
url="https://github.com/ecmwf/climetlab",
description="Handling of climate/meteorological data",
long_description=read("README.md"),
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=install_requires,
extras_require=extras_require,
zip_safe=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
],
tests_require=[
"pytest",
"nbconvert",
"jupyter",
"pytest-cov",
"climetlab-demo-dataset",
"climetlab-demo-source",
],
test_suite="tests",
entry_points={"console_scripts": ["climetlab=climetlab.scripts:main"]},
)