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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: anemoi-utils
3
- Version: 0.1.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
@@ -6,4 +6,4 @@
6
6
  # nor does it submit to any jurisdiction.
7
7
 
8
8
 
9
- __version__ = "0.1.1"
9
+ __version__ = "0.1.2"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: anemoi-utils
3
- Version: 0.1.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
@@ -0,0 +1,24 @@
1
+ tomli
2
+
3
+ [all]
4
+ tomli
5
+ GitPython
6
+ nvsmi
7
+ termcolor
8
+
9
+ [dev]
10
+ sphinx
11
+ sphinx_rtd_theme
12
+ nbsphinx
13
+ pandoc
14
+ tomli
15
+ GitPython
16
+ nvsmi
17
+ termcolor
18
+
19
+ [provenance]
20
+ GitPython
21
+ nvsmi
22
+
23
+ [text]
24
+ termcolor
@@ -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 = ["sphinx", "sphinx_rtd_theme", "nbsphinx", "pandoc"] + all_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
  },
@@ -1,11 +0,0 @@
1
- tomli
2
-
3
- [all]
4
- tomli
5
-
6
- [dev]
7
- sphinx
8
- sphinx_rtd_theme
9
- nbsphinx
10
- pandoc
11
- tomli
File without changes
File without changes
File without changes