-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpyproject.toml
102 lines (88 loc) · 2.86 KB
/
pyproject.toml
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
#!/usr/bin/env python
# (C) Copyright 2024 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.
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
[build-system]
requires = ["setuptools>=60", "setuptools-scm>=8.0"]
[project]
description = "Handling of climate/meteorological dataa."
name = "climetlab"
dynamic = ["version"]
license = { file = "LICENSE" }
requires-python = ">=3.9"
authors = [
{ name = "European Centre for Medium-Range Weather Forecasts (ECMWF)", email = "software.support@ecmwf.int" },
]
keywords = ["tools", "datasets", "ai"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
]
dependencies = [
"requests",
"branca",
"cdsapi",
"cfgrib>=0.9.10.1",
"dask",
"earthkit-meteo",
"eccodes>=1.3.0",
"ecmwf-api-client>=1.6.1",
"ecmwf-opendata>=0.1.2",
"ecmwflibs>=0.6.3",
"entrypoints",
"filelock",
"imageio",
"lru-dict",
"magics>=1.5.6",
"markdown",
"multiurl>=0.1.0",
"netcdf4",
"numpngw",
"pdbufr",
"pyodc",
"pyyaml",
"termcolor",
"toolz",
"tqdm",
"xarray",
]
[project.optional-dependencies]
"tensorflow" = ["tensorflow"]
"zarr" = ["zarr", "s3fs"]
"interactive" = ["skinnywms", "folium>=0.12.1"]
[project.urls]
Homepage = "https://github.com/ecmwf/climetlab/"
Documentation = "https://climetlab.readthedocs.io/"
Repository = "https://github.com/ecmwf/climetlab/"
Issues = "https://github.com/ecmwf/climetlab/issues"
# Changelog = "https://github.com/ecmwf/climetlab/CHANGELOG.md"
[project.scripts]
climetlab = "climetlab.scripts:main"
[tool.setuptools_scm]
version_file = "src/climetlab/_version.py"
[tool.setuptools.package-data]
"climetlab.config" = ["*.yaml"]
"climetlab.data.dask" = ["*.yaml"]
"climetlab.data.domains" = ["*.yaml"]
"climetlab.data.layers" = ["*.yaml"]
"climetlab.data.projections" = ["*.yaml"]
"climetlab.data.styles" = ["*.yaml"]
"climetlab.datasets" = ["*.yaml"]
"climetlab.datasets.meteonet_samples" = ["*.yaml"]
"climetlab.datasets.meteonet_samples.styles" = ["*.yaml"]
"climetlab.plotting.backends.magics" = ["*.yaml"]
"climetlab.data.css" = ["*.css"]
"climetlab.sources" = ["*.grib"]