anemoi-utils 0.1.1__tar.gz → 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of anemoi-utils might be problematic. Click here for more details.
- {anemoi-utils-0.1.1 → anemoi-utils-0.1.2}/PKG-INFO +3 -1
- {anemoi-utils-0.1.1 → anemoi-utils-0.1.2}/anemoi/utils/__init__.py +1 -1
- {anemoi-utils-0.1.1 → anemoi-utils-0.1.2}/anemoi_utils.egg-info/PKG-INFO +3 -1
- anemoi-utils-0.1.2/anemoi_utils.egg-info/requires.txt +24 -0
- {anemoi-utils-0.1.1 → anemoi-utils-0.1.2}/setup.py +13 -2
- anemoi-utils-0.1.1/anemoi_utils.egg-info/requires.txt +0 -11
- {anemoi-utils-0.1.1 → anemoi-utils-0.1.2}/LICENSE +0 -0
- {anemoi-utils-0.1.1 → anemoi-utils-0.1.2}/README.md +0 -0
- {anemoi-utils-0.1.1 → anemoi-utils-0.1.2}/anemoi/utils/checkpoints.py +0 -0
- {anemoi-utils-0.1.1 → anemoi-utils-0.1.2}/anemoi/utils/humanize.py +0 -0
- {anemoi-utils-0.1.1 → anemoi-utils-0.1.2}/anemoi/utils/provenance.py +0 -0
- {anemoi-utils-0.1.1 → anemoi-utils-0.1.2}/anemoi/utils/text.py +0 -0
- {anemoi-utils-0.1.1 → anemoi-utils-0.1.2}/anemoi_utils.egg-info/SOURCES.txt +0 -0
- {anemoi-utils-0.1.1 → anemoi-utils-0.1.2}/anemoi_utils.egg-info/dependency_links.txt +0 -0
- {anemoi-utils-0.1.1 → anemoi-utils-0.1.2}/anemoi_utils.egg-info/top_level.txt +0 -0
- {anemoi-utils-0.1.1 → anemoi-utils-0.1.2}/anemoi_utils.egg-info/zip-safe +0 -0
- {anemoi-utils-0.1.1 → anemoi-utils-0.1.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: anemoi-utils
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: A package to hold various functions to support training of ML models on ECMWF data.
|
|
5
5
|
Home-page: https://github.com/ecmwf/anemoi-utils
|
|
6
6
|
Author: European Centre for Medium-Range Weather Forecasts (ECMWF)
|
|
@@ -18,6 +18,8 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
|
18
18
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
19
19
|
Classifier: Operating System :: OS Independent
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
|
+
Provides-Extra: text
|
|
22
|
+
Provides-Extra: provenance
|
|
21
23
|
Provides-Extra: dev
|
|
22
24
|
Provides-Extra: all
|
|
23
25
|
License-File: LICENSE
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: anemoi-utils
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: A package to hold various functions to support training of ML models on ECMWF data.
|
|
5
5
|
Home-page: https://github.com/ecmwf/anemoi-utils
|
|
6
6
|
Author: European Centre for Medium-Range Weather Forecasts (ECMWF)
|
|
@@ -18,6 +18,8 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
|
18
18
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
19
19
|
Classifier: Operating System :: OS Independent
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
|
+
Provides-Extra: text
|
|
22
|
+
Provides-Extra: provenance
|
|
21
23
|
Provides-Extra: dev
|
|
22
24
|
Provides-Extra: all
|
|
23
25
|
License-File: LICENSE
|
|
@@ -33,9 +33,18 @@ install_requires = [
|
|
|
33
33
|
"tomli", # Only needed before 3.11
|
|
34
34
|
]
|
|
35
35
|
|
|
36
|
+
provenance_requires = [
|
|
37
|
+
"GitPython",
|
|
38
|
+
"nvsmi",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
text_requires = [
|
|
42
|
+
"termcolor",
|
|
43
|
+
]
|
|
44
|
+
doc_requires = ["sphinx", "sphinx_rtd_theme", "nbsphinx", "pandoc"]
|
|
36
45
|
|
|
37
|
-
all_requires = install_requires
|
|
38
|
-
dev_requires =
|
|
46
|
+
all_requires = install_requires + provenance_requires + text_requires
|
|
47
|
+
dev_requires = doc_requires + all_requires
|
|
39
48
|
|
|
40
49
|
setuptools.setup(
|
|
41
50
|
name="anemoi-utils",
|
|
@@ -51,6 +60,8 @@ setuptools.setup(
|
|
|
51
60
|
include_package_data=True,
|
|
52
61
|
install_requires=install_requires,
|
|
53
62
|
extras_require={
|
|
63
|
+
"text": text_requires,
|
|
64
|
+
"provenance": provenance_requires,
|
|
54
65
|
"dev": dev_requires,
|
|
55
66
|
"all": all_requires,
|
|
56
67
|
},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|