th2-grpc-lw-data-provider 2.3.1rc1__tar.gz → 2.4.0.dev9065606558__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 th2-grpc-lw-data-provider might be problematic. Click here for more details.
- {th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/PKG-INFO +1 -1
- {th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/package_info.json +1 -1
- {th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/setup.py +3 -3
- {th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/th2_grpc_lw_data_provider.egg-info/PKG-INFO +1 -1
- th2_grpc_lw_data_provider-2.4.0.dev9065606558/th2_grpc_lw_data_provider.egg-info/requires.txt +2 -0
- th2_grpc_lw_data_provider-2.3.1rc1/th2_grpc_lw_data_provider.egg-info/requires.txt +0 -2
- {th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/README.md +0 -0
- {th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/setup.cfg +0 -0
- {th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/th2_grpc_lw_data_provider/__init__.py +0 -0
- {th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/th2_grpc_lw_data_provider/data_provider_service.py +0 -0
- {th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/th2_grpc_lw_data_provider/lw_data_provider.proto +0 -0
- {th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/th2_grpc_lw_data_provider/lw_data_provider_pb2.py +0 -0
- {th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/th2_grpc_lw_data_provider/lw_data_provider_pb2.pyi +0 -0
- {th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/th2_grpc_lw_data_provider/lw_data_provider_pb2_grpc.py +0 -0
- {th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/th2_grpc_lw_data_provider/py.typed +0 -0
- {th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/th2_grpc_lw_data_provider/queue_data_provider.proto +0 -0
- {th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/th2_grpc_lw_data_provider/queue_data_provider_pb2.py +0 -0
- {th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/th2_grpc_lw_data_provider/queue_data_provider_pb2.pyi +0 -0
- {th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/th2_grpc_lw_data_provider/queue_data_provider_pb2_grpc.py +0 -0
- {th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/th2_grpc_lw_data_provider/queue_data_provider_service.py +0 -0
- {th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/th2_grpc_lw_data_provider.egg-info/SOURCES.txt +0 -0
- {th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/th2_grpc_lw_data_provider.egg-info/dependency_links.txt +0 -0
- {th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/th2_grpc_lw_data_provider.egg-info/top_level.txt +0 -0
{th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/setup.py
RENAMED
|
@@ -37,7 +37,7 @@ class ProtoGenerator(Command):
|
|
|
37
37
|
pass
|
|
38
38
|
|
|
39
39
|
def run(self):
|
|
40
|
-
proto_path = os.path.abspath('proto')
|
|
40
|
+
proto_path = os.path.abspath('src/main/proto')
|
|
41
41
|
gen_path = os.path.abspath('build/generated/source/proto/main/services/python')
|
|
42
42
|
|
|
43
43
|
if not os.path.exists(gen_path):
|
|
@@ -70,7 +70,7 @@ class ProtoGenerator(Command):
|
|
|
70
70
|
class CustomDist(sdist):
|
|
71
71
|
|
|
72
72
|
def run(self):
|
|
73
|
-
copy_tree(f'proto/{package_name}', package_name)
|
|
73
|
+
copy_tree(f'src/main/proto/{package_name}', package_name)
|
|
74
74
|
|
|
75
75
|
copy_tree(f'build/generated/source/proto/main/services/python/{package_name}', package_name)
|
|
76
76
|
Path(f'{package_name}/__init__.py').touch()
|
|
@@ -120,7 +120,7 @@ setup(
|
|
|
120
120
|
license='Apache License 2.0',
|
|
121
121
|
python_requires='>=3.7',
|
|
122
122
|
install_requires=[
|
|
123
|
-
'th2-grpc-common==4.
|
|
123
|
+
'th2-grpc-common==4.5.0.dev0',
|
|
124
124
|
'mypy-protobuf==3.4'
|
|
125
125
|
],
|
|
126
126
|
packages=packages,
|
{th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/README.md
RENAMED
|
File without changes
|
{th2_grpc_lw_data_provider-2.3.1rc1 → th2_grpc_lw_data_provider-2.4.0.dev9065606558}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|