rapida-python 0.1.0a0__tar.gz → 0.1.1a0__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.
Files changed (30) hide show
  1. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/PKG-INFO +3 -2
  2. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/README.md +1 -0
  3. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida/version.py +1 -1
  4. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida_python.egg-info/PKG-INFO +3 -2
  5. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/setup.py +3 -7
  6. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/bin/__init__.py +0 -0
  7. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida/__init__.py +0 -0
  8. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida/artifacts/__init__.py +0 -0
  9. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida/client/__init__.py +0 -0
  10. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida/client/grpc_bridge.py +0 -0
  11. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida/client/rapida_bridge.py +0 -0
  12. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida/client/response_wrapper.py +0 -0
  13. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida/constants.py +0 -0
  14. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida/exceptions/__init__.py +0 -0
  15. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida/exceptions/exceptions.py +0 -0
  16. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida/rapida_client.py +0 -0
  17. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida/rapida_client_options.py +0 -0
  18. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida/rapida_environment.py +0 -0
  19. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida/rapida_region.py +0 -0
  20. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida/rapida_source.py +0 -0
  21. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida/tests/__init__.py +0 -0
  22. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida/tests/test_rapida_client.py +0 -0
  23. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida/tests/test_rapida_client_options.py +0 -0
  24. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida/tests/test_values.py +0 -0
  25. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida/values.py +0 -0
  26. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida_python.egg-info/SOURCES.txt +0 -0
  27. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida_python.egg-info/dependency_links.txt +0 -0
  28. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida_python.egg-info/requires.txt +0 -0
  29. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/rapida_python.egg-info/top_level.txt +0 -0
  30. {rapida-python-0.1.0a0 → rapida-python-0.1.1a0}/setup.cfg +0 -0
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: rapida-python
3
- Version: 0.1.0a0
3
+ Version: 0.1.1a0
4
4
  Summary: rapidaAi sdk to integrate rapida.ai api's
5
- Home-page: https://github.com/rapidaai/rapida-sdk
5
+ Home-page: https://github.com/rapidaai/rapida-python
6
6
  Author-email: code@rapida.ai
7
7
  License: UNKNOWN
8
8
  Platform: POSIX
@@ -60,4 +60,5 @@ pip install rapida-python
60
60
  Use this space to show useful examples of how a project can be used. Additional screenshots, code examples and demos work well in this space. You may also link to more resources.
61
61
 
62
62
  _For more examples, please refer to the [Documentation](https://docs.rapida.ai/api-reference/introduction)
63
+ # gxs-demo
63
64
 
@@ -44,3 +44,4 @@ pip install rapida-python
44
44
  Use this space to show useful examples of how a project can be used. Additional screenshots, code examples and demos work well in this space. You may also link to more resources.
45
45
 
46
46
  _For more examples, please refer to the [Documentation](https://docs.rapida.ai/api-reference/introduction)
47
+ # gxs-demo
@@ -22,7 +22,7 @@
22
22
 
23
23
  _MAJOR = "0"
24
24
  _MINOR = "1"
25
- _REVISION = "0-alpha"
25
+ _REVISION = "1-alpha"
26
26
 
27
27
  VERSION_SHORT = f"{_MAJOR}.{_MINOR}"
28
28
  VERSION = f"{_MAJOR}.{_MINOR}.{_REVISION}"
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: rapida-python
3
- Version: 0.1.0a0
3
+ Version: 0.1.1a0
4
4
  Summary: rapidaAi sdk to integrate rapida.ai api's
5
- Home-page: https://github.com/rapidaai/rapida-sdk
5
+ Home-page: https://github.com/rapidaai/rapida-python
6
6
  Author-email: code@rapida.ai
7
7
  License: UNKNOWN
8
8
  Platform: POSIX
@@ -60,4 +60,5 @@ pip install rapida-python
60
60
  Use this space to show useful examples of how a project can be used. Additional screenshots, code examples and demos work well in this space. You may also link to more resources.
61
61
 
62
62
  _For more examples, please refer to the [Documentation](https://docs.rapida.ai/api-reference/introduction)
63
+ # gxs-demo
63
64
 
@@ -31,13 +31,9 @@ setup(
31
31
  long_description_content_type="text/markdown",
32
32
  classifiers=classifiers,
33
33
  platforms=["POSIX"],
34
- url="https://github.com/rapidaai/rapida-sdk",
35
- packages=find_packages(exclude=["examples", "invoker-api.proto"]),
36
- install_requires=[
37
- "grpcio==1.65.4",
38
- "protobuf==5.27.3",
39
- "pillow==10.4.0"
40
- ],
34
+ url="https://github.com/rapidaai/rapida-python",
35
+ packages=find_packages(exclude=["examples", "*.proto"]),
36
+ install_requires=["grpcio==1.65.4", "protobuf==5.27.3", "pillow==10.4.0"],
41
37
  extras_require={
42
38
  "grpcio-tools": ["grpcio-tools==1.60.0"],
43
39
  },