-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (75 loc) · 2.51 KB
/
pyproject.toml
File metadata and controls
91 lines (75 loc) · 2.51 KB
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
# (C) Copyright 2024 Anemoi contributors.
#
# 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.
[build-system]
requires = [ "setuptools>=60", "setuptools-scm>=8" ]
[project]
name = "anemoi-transform"
description = "A package to hold various data transformation functions to support training of ML models on ECMWF data."
readme = "README.md"
keywords = [ "ai", "tools" ]
license = { file = "LICENSE" }
authors = [
{ name = "European Centre for Medium-Range Weather Forecasts (ECMWF)", email = "software.support@ecmwf.int" },
]
requires-python = ">=3.11,<3.14"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = [ "version" ]
dependencies = [
"anemoi-utils>=0.4.36",
"cfunits",
"earthkit-data>=0.12.4,<1",
"earthkit-geo>=0.3",
"earthkit-meteo>=0.4.1",
"earthkit-regrid>=0.4",
"healpy",
"pandas<4",
]
optional-dependencies.all = [ "anemoi-transform[plots]" ]
optional-dependencies.dev = [ "anemoi-transform[all,docs,tests]" ]
optional-dependencies.docs = [
"nbsphinx",
"numpydoc",
"pandoc",
"requests",
"ruamel-yaml>=0.16",
"sphinx>=8.2",
"sphinx-argparse<0.5",
"sphinx-rtd-theme",
"termcolor",
]
optional-dependencies.plots = [ "matplotlib" ]
optional-dependencies.tests = [ "pytest", "pytest-skip-slow" ]
urls.Documentation = "https://anemoi-transform.readthedocs.io/"
urls.Homepage = "https://github.com/ecmwf/anemoi-transform/"
urls.Issues = "https://github.com/ecmwf/anemoi-transform/issues"
urls.Repository = "https://github.com/ecmwf/anemoi-transform/"
scripts.anemoi-transform = "anemoi.transform.__main__:main"
[tool.setuptools_scm]
version_file = "src/anemoi/transform/_version.py"
[tool.mypy]
strict = false
disable_error_code = [ "import-untyped" ]
exclude = [
"docs/*",
]
[tool.pydocstringformatter]
write = true
exclude = "docs/*"
style = "numpydoc"