python-service-builder 1.0.1__tar.gz → 1.0.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.
- {python-service-builder-1.0.1 → python-service-builder-1.0.2}/PKG-INFO +15 -1
- {python-service-builder-1.0.1 → python-service-builder-1.0.2}/pyproject.toml +1 -1
- {python-service-builder-1.0.1 → python-service-builder-1.0.2}/python_service_builder.egg-info/PKG-INFO +15 -1
- {python-service-builder-1.0.1 → python-service-builder-1.0.2}/service_framework/services.py +1 -0
- {python-service-builder-1.0.1 → python-service-builder-1.0.2}/README.md +0 -0
- {python-service-builder-1.0.1 → python-service-builder-1.0.2}/python_service_builder.egg-info/SOURCES.txt +0 -0
- {python-service-builder-1.0.1 → python-service-builder-1.0.2}/python_service_builder.egg-info/dependency_links.txt +0 -0
- {python-service-builder-1.0.1 → python-service-builder-1.0.2}/python_service_builder.egg-info/requires.txt +0 -0
- {python-service-builder-1.0.1 → python-service-builder-1.0.2}/python_service_builder.egg-info/top_level.txt +0 -0
- {python-service-builder-1.0.1 → python-service-builder-1.0.2}/service_framework/__init__.py +0 -0
- {python-service-builder-1.0.1 → python-service-builder-1.0.2}/service_framework/__init_test.py +0 -0
- {python-service-builder-1.0.1 → python-service-builder-1.0.2}/service_framework/list_services.py +0 -0
- {python-service-builder-1.0.1 → python-service-builder-1.0.2}/service_framework/service_builder.py +0 -0
- {python-service-builder-1.0.1 → python-service-builder-1.0.2}/service_framework/services_test.py +0 -0
- {python-service-builder-1.0.1 → python-service-builder-1.0.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-service-builder
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: Helper library for easier creation of Google services.
|
|
5
5
|
Author-email: David Harcombe <david.harcombe@gmail.com>
|
|
6
6
|
License: Apache 2.0
|
|
@@ -10,6 +10,20 @@ Classifier: Programming Language :: Python :: 3
|
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Requires-Python: >=3.10
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: absl-py>=0.12.0
|
|
14
|
+
Requires-Dist: dataclasses-json>=0.5.2
|
|
15
|
+
Requires-Dist: gcs-oauth2-boto-plugin>=2.7
|
|
16
|
+
Requires-Dist: google-api-core>=1.26.1
|
|
17
|
+
Requires-Dist: google-api-python-client>=2.0.2
|
|
18
|
+
Requires-Dist: google-auth-httplib2>=0.1.0
|
|
19
|
+
Requires-Dist: google-auth-oauthlib>=0.4.3
|
|
20
|
+
Requires-Dist: google-auth>=1.28.0
|
|
21
|
+
Requires-Dist: google-reauth>=0.1.1
|
|
22
|
+
Requires-Dist: googleapis-common-protos>=1.53.0
|
|
23
|
+
Requires-Dist: httplib2>=0.19.0
|
|
24
|
+
Requires-Dist: immutabledict>=2.2.1
|
|
25
|
+
Requires-Dist: oauth2client>=4.1.3
|
|
26
|
+
Requires-Dist: oauthlib>=3.1.0
|
|
13
27
|
|
|
14
28
|
# Python Library for helping to create Python services from Google APIs
|
|
15
29
|
|
|
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "python-service-builder"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.2"
|
|
8
8
|
authors = [{ name = "David Harcombe", email = "david.harcombe@gmail.com" }]
|
|
9
9
|
description = "Helper library for easier creation of Google services."
|
|
10
10
|
readme = "README.md"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-service-builder
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: Helper library for easier creation of Google services.
|
|
5
5
|
Author-email: David Harcombe <david.harcombe@gmail.com>
|
|
6
6
|
License: Apache 2.0
|
|
@@ -10,6 +10,20 @@ Classifier: Programming Language :: Python :: 3
|
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Requires-Python: >=3.10
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: absl-py>=0.12.0
|
|
14
|
+
Requires-Dist: dataclasses-json>=0.5.2
|
|
15
|
+
Requires-Dist: gcs-oauth2-boto-plugin>=2.7
|
|
16
|
+
Requires-Dist: google-api-core>=1.26.1
|
|
17
|
+
Requires-Dist: google-api-python-client>=2.0.2
|
|
18
|
+
Requires-Dist: google-auth-httplib2>=0.1.0
|
|
19
|
+
Requires-Dist: google-auth-oauthlib>=0.4.3
|
|
20
|
+
Requires-Dist: google-auth>=1.28.0
|
|
21
|
+
Requires-Dist: google-reauth>=0.1.1
|
|
22
|
+
Requires-Dist: googleapis-common-protos>=1.53.0
|
|
23
|
+
Requires-Dist: httplib2>=0.19.0
|
|
24
|
+
Requires-Dist: immutabledict>=2.2.1
|
|
25
|
+
Requires-Dist: oauth2client>=4.1.3
|
|
26
|
+
Requires-Dist: oauthlib>=3.1.0
|
|
13
27
|
|
|
14
28
|
# Python Library for helping to create Python services from Google APIs
|
|
15
29
|
|
|
@@ -322,6 +322,7 @@ SERVICE_DEFINITIONS = \
|
|
|
322
322
|
'WEBSECURITYSCANNER': ('websecurityscanner', 'v1'),
|
|
323
323
|
'WORKFLOWEXECUTIONS': ('workflowexecutions', 'v1'),
|
|
324
324
|
'WORKFLOWS': ('workflows', 'v1'),
|
|
325
|
+
'WORKSPACEEVENTS': {'workspaceevents', 'v1'},
|
|
325
326
|
'YOUTUBE': ('youtube', 'v3'),
|
|
326
327
|
'YOUTUBEANALYTICS': ('youtubeAnalytics', 'v2'),
|
|
327
328
|
'YOUTUBEREPORTING': ('youtubereporting', 'v1')})
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python-service-builder-1.0.1 → python-service-builder-1.0.2}/service_framework/__init_test.py
RENAMED
|
File without changes
|
{python-service-builder-1.0.1 → python-service-builder-1.0.2}/service_framework/list_services.py
RENAMED
|
File without changes
|
{python-service-builder-1.0.1 → python-service-builder-1.0.2}/service_framework/service_builder.py
RENAMED
|
File without changes
|
{python-service-builder-1.0.1 → python-service-builder-1.0.2}/service_framework/services_test.py
RENAMED
|
File without changes
|
|
File without changes
|