digitalhub 0.0.1__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.
- digitalhub-0.0.1/PKG-INFO +16 -0
- digitalhub-0.0.1/README.md +3 -0
- digitalhub-0.0.1/digitalhub/__init__.py +0 -0
- digitalhub-0.0.1/digitalhub.egg-info/PKG-INFO +16 -0
- digitalhub-0.0.1/digitalhub.egg-info/SOURCES.txt +7 -0
- digitalhub-0.0.1/digitalhub.egg-info/dependency_links.txt +1 -0
- digitalhub-0.0.1/digitalhub.egg-info/top_level.txt +1 -0
- digitalhub-0.0.1/pyproject.toml +26 -0
- digitalhub-0.0.1/setup.cfg +4 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: digitalhub
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Python SDK for DigitalHub
|
|
5
|
+
Author-email: Fondazione Bruno Kessler <dslab@fbk.eu>, Matteo Martini <mmartini@fbk.eu>
|
|
6
|
+
Keywords: data,dataops,kubernetes
|
|
7
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# Digitalhub Library
|
|
15
|
+
|
|
16
|
+
Digitalhub sdk library.
|
|
File without changes
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: digitalhub
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Python SDK for DigitalHub
|
|
5
|
+
Author-email: Fondazione Bruno Kessler <dslab@fbk.eu>, Matteo Martini <mmartini@fbk.eu>
|
|
6
|
+
Keywords: data,dataops,kubernetes
|
|
7
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# Digitalhub Library
|
|
15
|
+
|
|
16
|
+
Digitalhub sdk library.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
digitalhub
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "digitalhub"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Python SDK for DigitalHub"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
authors = [
|
|
11
|
+
{ name = "Fondazione Bruno Kessler", email = "dslab@fbk.eu" },
|
|
12
|
+
{ name = "Matteo Martini", email = "mmartini@fbk.eu" }
|
|
13
|
+
]
|
|
14
|
+
license = { file = "LICENSE.txt" }
|
|
15
|
+
classifiers = [
|
|
16
|
+
"License :: OSI Approved :: Apache Software License",
|
|
17
|
+
"Programming Language :: Python :: 3.9",
|
|
18
|
+
"Programming Language :: Python :: 3.10",
|
|
19
|
+
"Programming Language :: Python :: 3.11",
|
|
20
|
+
]
|
|
21
|
+
keywords = ["data", "dataops", "kubernetes"]
|
|
22
|
+
requires-python = ">=3.9"
|
|
23
|
+
dependencies = [
|
|
24
|
+
|
|
25
|
+
]
|
|
26
|
+
|