python-service-builder 1.1.0__tar.gz → 1.1.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.
- {python_service_builder-1.1.0 → python_service_builder-1.1.1}/PKG-INFO +3 -1
- {python_service_builder-1.1.0 → python_service_builder-1.1.1}/pyproject.toml +19 -17
- {python_service_builder-1.1.0 → python_service_builder-1.1.1}/python_service_builder.egg-info/PKG-INFO +3 -1
- {python_service_builder-1.1.0 → python_service_builder-1.1.1}/python_service_builder.egg-info/requires.txt +2 -0
- {python_service_builder-1.1.0 → python_service_builder-1.1.1}/README.md +0 -0
- {python_service_builder-1.1.0 → python_service_builder-1.1.1}/python_service_builder.egg-info/SOURCES.txt +0 -0
- {python_service_builder-1.1.0 → python_service_builder-1.1.1}/python_service_builder.egg-info/dependency_links.txt +0 -0
- {python_service_builder-1.1.0 → python_service_builder-1.1.1}/python_service_builder.egg-info/top_level.txt +0 -0
- {python_service_builder-1.1.0 → python_service_builder-1.1.1}/service_framework/__init__.py +0 -0
- {python_service_builder-1.1.0 → python_service_builder-1.1.1}/service_framework/__init_test.py +0 -0
- {python_service_builder-1.1.0 → python_service_builder-1.1.1}/service_framework/list_services.py +0 -0
- {python_service_builder-1.1.0 → python_service_builder-1.1.1}/service_framework/service_builder.py +0 -0
- {python_service_builder-1.1.0 → python_service_builder-1.1.1}/service_framework/services.py +0 -0
- {python_service_builder-1.1.0 → python_service_builder-1.1.1}/service_framework/services_test.py +0 -0
- {python_service_builder-1.1.0 → python_service_builder-1.1.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-service-builder
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.1
|
|
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
|
|
@@ -11,6 +11,7 @@ Classifier: Operating System :: OS Independent
|
|
|
11
11
|
Requires-Python: >=3.10
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
Requires-Dist: absl-py>=0.12.0
|
|
14
|
+
Requires-Dist: aenum>=3.1.0
|
|
14
15
|
Requires-Dist: dataclasses-json>=0.5.2
|
|
15
16
|
Requires-Dist: gcs-oauth2-boto-plugin>=2.7
|
|
16
17
|
Requires-Dist: google-api-core>=1.26.1
|
|
@@ -24,6 +25,7 @@ Requires-Dist: httplib2>=0.19.0
|
|
|
24
25
|
Requires-Dist: immutabledict>=2.2.1
|
|
25
26
|
Requires-Dist: oauth2client>=4.1.3
|
|
26
27
|
Requires-Dist: oauthlib>=3.1.0
|
|
28
|
+
Requires-Dist: web.py>=0.62
|
|
27
29
|
|
|
28
30
|
# Python Library for helping to create Python services from Google APIs
|
|
29
31
|
|
|
@@ -4,31 +4,33 @@ build-backend = 'setuptools.build_meta'
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "python-service-builder"
|
|
7
|
-
version = "1.1.
|
|
7
|
+
version = "1.1.1"
|
|
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"
|
|
11
11
|
requires-python = ">=3.10"
|
|
12
12
|
classifiers = [
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
"Programming Language :: Python :: 3",
|
|
14
|
+
"Operating System :: OS Independent",
|
|
15
15
|
]
|
|
16
16
|
license = { text = "Apache 2.0" }
|
|
17
17
|
dependencies = [
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
18
|
+
'absl-py>=0.12.0',
|
|
19
|
+
'aenum>=3.1.0',
|
|
20
|
+
'dataclasses-json>=0.5.2',
|
|
21
|
+
'gcs-oauth2-boto-plugin>=2.7',
|
|
22
|
+
'google-api-core>=1.26.1',
|
|
23
|
+
'google-api-python-client>=2.0.2',
|
|
24
|
+
'google-auth-httplib2>=0.1.0',
|
|
25
|
+
'google-auth-oauthlib>=0.4.3',
|
|
26
|
+
'google-auth>=1.28.0',
|
|
27
|
+
'google-reauth>=0.1.1',
|
|
28
|
+
'googleapis-common-protos>=1.53.0',
|
|
29
|
+
'httplib2>=0.19.0',
|
|
30
|
+
'immutabledict>=2.2.1',
|
|
31
|
+
'oauth2client>=4.1.3',
|
|
32
|
+
'oauthlib>=3.1.0',
|
|
33
|
+
'web.py>=0.62',
|
|
32
34
|
]
|
|
33
35
|
|
|
34
36
|
[tool.setuptools]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-service-builder
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.1
|
|
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
|
|
@@ -11,6 +11,7 @@ Classifier: Operating System :: OS Independent
|
|
|
11
11
|
Requires-Python: >=3.10
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
Requires-Dist: absl-py>=0.12.0
|
|
14
|
+
Requires-Dist: aenum>=3.1.0
|
|
14
15
|
Requires-Dist: dataclasses-json>=0.5.2
|
|
15
16
|
Requires-Dist: gcs-oauth2-boto-plugin>=2.7
|
|
16
17
|
Requires-Dist: google-api-core>=1.26.1
|
|
@@ -24,6 +25,7 @@ Requires-Dist: httplib2>=0.19.0
|
|
|
24
25
|
Requires-Dist: immutabledict>=2.2.1
|
|
25
26
|
Requires-Dist: oauth2client>=4.1.3
|
|
26
27
|
Requires-Dist: oauthlib>=3.1.0
|
|
28
|
+
Requires-Dist: web.py>=0.62
|
|
27
29
|
|
|
28
30
|
# Python Library for helping to create Python services from Google APIs
|
|
29
31
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_service_builder-1.1.0 → python_service_builder-1.1.1}/service_framework/__init_test.py
RENAMED
|
File without changes
|
{python_service_builder-1.1.0 → python_service_builder-1.1.1}/service_framework/list_services.py
RENAMED
|
File without changes
|
{python_service_builder-1.1.0 → python_service_builder-1.1.1}/service_framework/service_builder.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_service_builder-1.1.0 → python_service_builder-1.1.1}/service_framework/services_test.py
RENAMED
|
File without changes
|
|
File without changes
|