digitalhub 0.3.2__tar.gz → 0.4.0__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 digitalhub might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: digitalhub
3
- Version: 0.3.2
3
+ Version: 0.4.0
4
4
  Summary: Python SDK for DigitalHub
5
5
  Author-email: Fondazione Bruno Kessler <dslab@fbk.eu>, Matteo Martini <mmartini@fbk.eu>
6
6
  License: Apache License
@@ -228,18 +228,21 @@ Classifier: Programming Language :: Python :: 3.10
228
228
  Requires-Python: >=3.9
229
229
  Description-Content-Type: text/markdown
230
230
  License-File: LICENSE.txt
231
- Requires-Dist: digitalhub-core~=0.3
231
+ Requires-Dist: digitalhub-core~=0.4
232
232
  Provides-Extra: all
233
- Requires-Dist: digitalhub-data~=0.3; extra == "all"
234
- Requires-Dist: digitalhub-ml~=0.3; extra == "all"
235
- Requires-Dist: digitalhub-ai~=0.3; extra == "all"
233
+ Requires-Dist: digitalhub-data~=0.4; extra == "all"
234
+ Requires-Dist: digitalhub-ml~=0.4; extra == "all"
235
+ Requires-Dist: digitalhub-ai~=0.4; extra == "all"
236
236
  Provides-Extra: ml
237
- Requires-Dist: digitalhub-ml~=0.3; extra == "ml"
237
+ Requires-Dist: digitalhub-ml~=0.4; extra == "ml"
238
238
  Provides-Extra: ai
239
- Requires-Dist: digitalhub-ai~=0.3; extra == "ai"
239
+ Requires-Dist: digitalhub-ai~=0.4; extra == "ai"
240
240
  Provides-Extra: data
241
- Requires-Dist: digitalhub-data~=0.3; extra == "data"
241
+ Requires-Dist: digitalhub-data~=0.4; extra == "data"
242
242
 
243
243
  # Digitalhub Library
244
244
 
245
- Digitalhub sdk library.
245
+ The Digitalhub SDK library is used to manage entities and executions in Digitalhub from Python.
246
+ It comes with a suite of tools to help you manage your projects and executions. It exposes CRUD methods to create, read, update and delete entities, and objects methods to excute functions or workflows, collect or store execution results and data.
247
+
248
+ A more detailed description of the library can be found in the [official documentation](https://scc-digitalhub.github.io/docs/) of Digitalhub.
@@ -0,0 +1,6 @@
1
+ # Digitalhub Library
2
+
3
+ The Digitalhub SDK library is used to manage entities and executions in Digitalhub from Python.
4
+ It comes with a suite of tools to help you manage your projects and executions. It exposes CRUD methods to create, read, update and delete entities, and objects methods to excute functions or workflows, collect or store execution results and data.
5
+
6
+ A more detailed description of the library can be found in the [official documentation](https://scc-digitalhub.github.io/docs/) of Digitalhub.
@@ -40,6 +40,7 @@ from digitalhub_core import (
40
40
  update_task,
41
41
  update_workflow,
42
42
  )
43
+ from digitalhub_core.registry.utils import register_layer_entities, register_runtimes_entities
43
44
 
44
45
  _PROJECT_IMPORTED = False
45
46
 
@@ -93,3 +94,8 @@ if not _PROJECT_IMPORTED:
93
94
 
94
95
  if not _PROJECT_IMPORTED:
95
96
  from digitalhub_core import get_or_create_project, get_project, import_project, load_project, new_project
97
+
98
+
99
+ # Register entities into registry
100
+ register_layer_entities()
101
+ register_runtimes_entities()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: digitalhub
3
- Version: 0.3.2
3
+ Version: 0.4.0
4
4
  Summary: Python SDK for DigitalHub
5
5
  Author-email: Fondazione Bruno Kessler <dslab@fbk.eu>, Matteo Martini <mmartini@fbk.eu>
6
6
  License: Apache License
@@ -228,18 +228,21 @@ Classifier: Programming Language :: Python :: 3.10
228
228
  Requires-Python: >=3.9
229
229
  Description-Content-Type: text/markdown
230
230
  License-File: LICENSE.txt
231
- Requires-Dist: digitalhub-core~=0.3
231
+ Requires-Dist: digitalhub-core~=0.4
232
232
  Provides-Extra: all
233
- Requires-Dist: digitalhub-data~=0.3; extra == "all"
234
- Requires-Dist: digitalhub-ml~=0.3; extra == "all"
235
- Requires-Dist: digitalhub-ai~=0.3; extra == "all"
233
+ Requires-Dist: digitalhub-data~=0.4; extra == "all"
234
+ Requires-Dist: digitalhub-ml~=0.4; extra == "all"
235
+ Requires-Dist: digitalhub-ai~=0.4; extra == "all"
236
236
  Provides-Extra: ml
237
- Requires-Dist: digitalhub-ml~=0.3; extra == "ml"
237
+ Requires-Dist: digitalhub-ml~=0.4; extra == "ml"
238
238
  Provides-Extra: ai
239
- Requires-Dist: digitalhub-ai~=0.3; extra == "ai"
239
+ Requires-Dist: digitalhub-ai~=0.4; extra == "ai"
240
240
  Provides-Extra: data
241
- Requires-Dist: digitalhub-data~=0.3; extra == "data"
241
+ Requires-Dist: digitalhub-data~=0.4; extra == "data"
242
242
 
243
243
  # Digitalhub Library
244
244
 
245
- Digitalhub sdk library.
245
+ The Digitalhub SDK library is used to manage entities and executions in Digitalhub from Python.
246
+ It comes with a suite of tools to help you manage your projects and executions. It exposes CRUD methods to create, read, update and delete entities, and objects methods to excute functions or workflows, collect or store execution results and data.
247
+
248
+ A more detailed description of the library can be found in the [official documentation](https://scc-digitalhub.github.io/docs/) of Digitalhub.
@@ -0,0 +1,15 @@
1
+ digitalhub-core~=0.4
2
+
3
+ [ai]
4
+ digitalhub-ai~=0.4
5
+
6
+ [all]
7
+ digitalhub-data~=0.4
8
+ digitalhub-ml~=0.4
9
+ digitalhub-ai~=0.4
10
+
11
+ [data]
12
+ digitalhub-data~=0.4
13
+
14
+ [ml]
15
+ digitalhub-ml~=0.4
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "digitalhub"
7
- version = "0.3.2"
7
+ version = "0.4.0"
8
8
  description = "Python SDK for DigitalHub"
9
9
  readme = "README.md"
10
10
  authors = [
@@ -20,18 +20,18 @@ classifiers = [
20
20
  keywords = ["data", "dataops", "kubernetes"]
21
21
  requires-python = ">=3.9"
22
22
  dependencies = [
23
- "digitalhub-core~=0.3",
23
+ "digitalhub-core~=0.4",
24
24
  ]
25
25
 
26
26
  [project.optional-dependencies]
27
27
  all = [
28
- "digitalhub-data~=0.3",
29
- "digitalhub-ml~=0.3",
30
- "digitalhub-ai~=0.3",
28
+ "digitalhub-data~=0.4",
29
+ "digitalhub-ml~=0.4",
30
+ "digitalhub-ai~=0.4",
31
31
  ]
32
- ml = ["digitalhub-ml~=0.3"]
33
- ai = ["digitalhub-ai~=0.3"]
34
- data = ["digitalhub-data~=0.3"]
32
+ ml = ["digitalhub-ml~=0.4"]
33
+ ai = ["digitalhub-ai~=0.4"]
34
+ data = ["digitalhub-data~=0.4"]
35
35
 
36
36
  [project.urls]
37
37
  Homepage = "https://github.com/scc-digitalhub/digitalhub-sdk"
@@ -52,7 +52,7 @@ line-length = 120
52
52
  convention = "numpy"
53
53
 
54
54
  [tool.bumpver]
55
- current_version = "0.3.2"
55
+ current_version = "0.4.0"
56
56
  version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
57
57
  commit_message = "Bump version {old_version} -> {new_version}"
58
58
  commit = false
@@ -1,3 +0,0 @@
1
- # Digitalhub Library
2
-
3
- Digitalhub sdk library.
@@ -1,15 +0,0 @@
1
- digitalhub-core~=0.3
2
-
3
- [ai]
4
- digitalhub-ai~=0.3
5
-
6
- [all]
7
- digitalhub-data~=0.3
8
- digitalhub-ml~=0.3
9
- digitalhub-ai~=0.3
10
-
11
- [data]
12
- digitalhub-data~=0.3
13
-
14
- [ml]
15
- digitalhub-ml~=0.3
File without changes
File without changes
File without changes