cloudpub 1.4.0__tar.gz → 1.6.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.
- {cloudpub-1.4.0/cloudpub.egg-info → cloudpub-1.6.0}/PKG-INFO +1 -6
- {cloudpub-1.4.0 → cloudpub-1.6.0}/README.md +2 -2
- {cloudpub-1.4.0 → cloudpub-1.6.0}/cloudpub/ms_azure/service.py +379 -131
- {cloudpub-1.4.0 → cloudpub-1.6.0}/cloudpub/ms_azure/session.py +4 -4
- {cloudpub-1.4.0 → cloudpub-1.6.0}/cloudpub/ms_azure/utils.py +39 -16
- {cloudpub-1.4.0 → cloudpub-1.6.0/cloudpub.egg-info}/PKG-INFO +1 -6
- cloudpub-1.6.0/requirements.txt +153 -0
- {cloudpub-1.4.0 → cloudpub-1.6.0}/setup.py +1 -2
- cloudpub-1.4.0/requirements.txt +0 -166
- {cloudpub-1.4.0 → cloudpub-1.6.0}/LICENSE +0 -0
- {cloudpub-1.4.0 → cloudpub-1.6.0}/MANIFEST.in +0 -0
- {cloudpub-1.4.0 → cloudpub-1.6.0}/cloudpub/__init__.py +0 -0
- {cloudpub-1.4.0 → cloudpub-1.6.0}/cloudpub/aws/__init__.py +0 -0
- {cloudpub-1.4.0 → cloudpub-1.6.0}/cloudpub/aws/service.py +0 -0
- {cloudpub-1.4.0 → cloudpub-1.6.0}/cloudpub/aws/utils.py +0 -0
- {cloudpub-1.4.0 → cloudpub-1.6.0}/cloudpub/common.py +0 -0
- {cloudpub-1.4.0 → cloudpub-1.6.0}/cloudpub/error.py +0 -0
- {cloudpub-1.4.0 → cloudpub-1.6.0}/cloudpub/models/__init__.py +0 -0
- {cloudpub-1.4.0 → cloudpub-1.6.0}/cloudpub/models/aws.py +0 -0
- {cloudpub-1.4.0 → cloudpub-1.6.0}/cloudpub/models/common.py +0 -0
- {cloudpub-1.4.0 → cloudpub-1.6.0}/cloudpub/models/ms_azure.py +0 -0
- {cloudpub-1.4.0 → cloudpub-1.6.0}/cloudpub/ms_azure/__init__.py +0 -0
- {cloudpub-1.4.0 → cloudpub-1.6.0}/cloudpub/utils.py +0 -0
- {cloudpub-1.4.0 → cloudpub-1.6.0}/cloudpub.egg-info/SOURCES.txt +0 -0
- {cloudpub-1.4.0 → cloudpub-1.6.0}/cloudpub.egg-info/dependency_links.txt +0 -0
- {cloudpub-1.4.0 → cloudpub-1.6.0}/cloudpub.egg-info/not-zip-safe +0 -0
- {cloudpub-1.4.0 → cloudpub-1.6.0}/cloudpub.egg-info/requires.txt +0 -0
- {cloudpub-1.4.0 → cloudpub-1.6.0}/cloudpub.egg-info/top_level.txt +0 -0
- {cloudpub-1.4.0 → cloudpub-1.6.0}/setup.cfg +0 -0
|
@@ -1,20 +1,15 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cloudpub
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.6.0
|
|
4
4
|
Summary: Services for publishing products in cloud environments
|
|
5
5
|
Home-page: https://github.com/release-engineering/cloudpub
|
|
6
6
|
Author: Jonathan Gangi
|
|
7
7
|
Author-email: jgangi@redhat.com
|
|
8
8
|
License: GPLv3+
|
|
9
9
|
Keywords: stratosphere cloudpub cloudpublish
|
|
10
|
-
Platform: UNKNOWN
|
|
11
10
|
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
13
11
|
Classifier: Programming Language :: Python :: 3.10
|
|
14
12
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
16
14
|
Classifier: Programming Language :: Python :: 3.13
|
|
17
15
|
License-File: LICENSE
|
|
18
|
-
|
|
19
|
-
UNKNOWN
|
|
20
|
-
|
|
@@ -51,7 +51,7 @@ To install this library go to the project's root directory and execute:
|
|
|
51
51
|
|
|
52
52
|
The versions listed below are the one which were tested and work. Other versions can work as well.
|
|
53
53
|
|
|
54
|
-
- Install or create a `virtualenv` for `python` >= 3.
|
|
54
|
+
- Install or create a `virtualenv` for `python` >= 3.10
|
|
55
55
|
- Install `tox` >= 3.25
|
|
56
56
|
|
|
57
57
|
### Dependency Management
|
|
@@ -89,4 +89,4 @@ To automatically format your code you man run `tox -e autoformat`.
|
|
|
89
89
|
|
|
90
90
|
### Unit tests
|
|
91
91
|
|
|
92
|
-
To run unit tests use `tox -e
|
|
92
|
+
To run unit tests use `tox -e py310,py311,py312,py313`.
|