rapida-python 0.1.3a0__tar.gz → 0.1.4a0__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 (32) hide show
  1. {rapida-python-0.1.3a0/rapida_python.egg-info → rapida_python-0.1.4a0}/PKG-INFO +3 -2
  2. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida/version.py +1 -1
  3. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0/rapida_python.egg-info}/PKG-INFO +2 -1
  4. rapida_python-0.1.4a0/rapida_python.egg-info/requires.txt +42 -0
  5. rapida_python-0.1.4a0/setup.py +74 -0
  6. rapida-python-0.1.3a0/rapida_python.egg-info/requires.txt +0 -6
  7. rapida-python-0.1.3a0/setup.py +0 -44
  8. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/README.md +0 -0
  9. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/bin/__init__.py +0 -0
  10. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida/__init__.py +0 -0
  11. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida/artifacts/__init__.py +0 -0
  12. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida/client/__init__.py +0 -0
  13. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida/client/grpc_bridge.py +0 -0
  14. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida/client/rapida_bridge.py +0 -0
  15. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida/client/response_wrapper.py +0 -0
  16. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida/constants.py +0 -0
  17. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida/exceptions/__init__.py +0 -0
  18. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida/exceptions/exceptions.py +0 -0
  19. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida/rapida_client.py +0 -0
  20. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida/rapida_client_options.py +0 -0
  21. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida/rapida_environment.py +0 -0
  22. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida/rapida_region.py +0 -0
  23. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida/rapida_source.py +0 -0
  24. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida/tests/__init__.py +0 -0
  25. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida/tests/test_rapida_client.py +0 -0
  26. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida/tests/test_rapida_client_options.py +0 -0
  27. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida/tests/test_values.py +0 -0
  28. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida/values.py +0 -0
  29. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida_python.egg-info/SOURCES.txt +0 -0
  30. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida_python.egg-info/dependency_links.txt +0 -0
  31. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/rapida_python.egg-info/top_level.txt +0 -0
  32. {rapida-python-0.1.3a0 → rapida_python-0.1.4a0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
- Name: rapida-python
3
- Version: 0.1.3a0
2
+ Name: rapida_python
3
+ Version: 0.1.4a0
4
4
  Summary: rapidaAi sdk to integrate rapida.ai api's
5
5
  Home-page: https://github.com/rapidaai/rapida-python
6
6
  Author-email: code@rapida.ai
@@ -12,6 +12,7 @@ Classifier: Environment :: Web Environment
12
12
  Classifier: Intended Audience :: Developers
13
13
  Requires-Python: >=3.9
14
14
  Description-Content-Type: text/markdown
15
+ Provides-Extra: dev
15
16
  Provides-Extra: grpcio-tools
16
17
 
17
18
  ## Table Of Contents
@@ -22,7 +22,7 @@
22
22
 
23
23
  _MAJOR = "0"
24
24
  _MINOR = "1"
25
- _REVISION = "3-alpha"
25
+ _REVISION = "4-alpha"
26
26
 
27
27
  VERSION_SHORT = f"{_MAJOR}.{_MINOR}"
28
28
  VERSION = f"{_MAJOR}.{_MINOR}.{_REVISION}"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: rapida-python
3
- Version: 0.1.3a0
3
+ Version: 0.1.4a0
4
4
  Summary: rapidaAi sdk to integrate rapida.ai api's
5
5
  Home-page: https://github.com/rapidaai/rapida-python
6
6
  Author-email: code@rapida.ai
@@ -12,6 +12,7 @@ Classifier: Environment :: Web Environment
12
12
  Classifier: Intended Audience :: Developers
13
13
  Requires-Python: >=3.9
14
14
  Description-Content-Type: text/markdown
15
+ Provides-Extra: dev
15
16
  Provides-Extra: grpcio-tools
16
17
 
17
18
  ## Table Of Contents
@@ -0,0 +1,42 @@
1
+
2
+ [:python_version >= "3.6"]
3
+ idna==3.10
4
+ invoke==2.2.0
5
+
6
+ [:python_version >= "3.7" and python_version < "4.0"]
7
+ grpc-interceptor==0.15.4
8
+
9
+ [:python_version >= "3.8"]
10
+ annotated-types==0.7.0
11
+ attrs==25.3.0
12
+
13
+ [:python_version >= "3.9"]
14
+ aiohappyeyeballs==2.6.1
15
+ aiohttp==3.12.13
16
+ aiosignal==1.3.2
17
+ frozenlist==1.7.0
18
+ grpcio==1.72.1
19
+ grpcio-tools==1.72.1
20
+ multidict==6.5.0
21
+ pillow==11.2.1
22
+ propcache==0.3.2
23
+ protobuf==6.31.1
24
+ pydantic==2.11.7
25
+ pydantic-core==2.33.2
26
+ setuptools==80.9.0
27
+ types-protobuf==6.30.2.20250516
28
+ typing-extensions==4.14.0
29
+ typing-inspection==0.4.1
30
+ yarl==1.20.1
31
+
32
+ [dev]
33
+ pytest
34
+ pytest-cov
35
+ flake8
36
+ black
37
+ mypy
38
+
39
+ [grpcio-tools]
40
+
41
+ [grpcio-tools:python_version >= "3.9"]
42
+ grpcio-tools==1.72.1
@@ -0,0 +1,74 @@
1
+ #!/usr/bin/env python
2
+ import os.path
3
+
4
+ from setuptools import find_packages, setup
5
+
6
+
7
+ def read(*parts):
8
+ with open(os.path.join(*parts)) as f:
9
+ return f.read().strip()
10
+
11
+
12
+ classifiers = [
13
+ "Development Status :: 5 - Production/Stable",
14
+ "Programming Language :: Python :: 3.9",
15
+ "Environment :: Web Environment",
16
+ "Intended Audience :: Developers",
17
+ ]
18
+
19
+ VERSION = {}
20
+ # version.py defines VERSION and VERSION_SHORT variables.
21
+ # We use exec here to read it so that we don't import scispacy
22
+ with open("rapida/version.py") as version_file:
23
+ exec(version_file.read(), VERSION)
24
+
25
+ setup(
26
+ name="rapida_python",
27
+ version=VERSION["VERSION"],
28
+ author_email="code@rapida.ai",
29
+ description="rapidaAi sdk to integrate rapida.ai api's",
30
+ long_description=read("README.md"),
31
+ long_description_content_type="text/markdown",
32
+ classifiers=classifiers,
33
+ platforms=["POSIX"],
34
+ url="https://github.com/rapidaai/rapida-python",
35
+ packages=find_packages(exclude=["examples", "*.proto"]),
36
+ install_requires=[
37
+ "aiohappyeyeballs==2.6.1; python_version >= '3.9'",
38
+ "aiohttp==3.12.13; python_version >= '3.9'",
39
+ "aiosignal==1.3.2; python_version >= '3.9'",
40
+ "annotated-types==0.7.0; python_version >= '3.8'",
41
+ "attrs==25.3.0; python_version >= '3.8'",
42
+ "frozenlist==1.7.0; python_version >= '3.9'",
43
+ "grpc-interceptor==0.15.4; python_version >= '3.7' and python_version < '4.0'",
44
+ "grpcio==1.72.1; python_version >= '3.9'",
45
+ "grpcio-tools==1.72.1; python_version >= '3.9'",
46
+ "idna==3.10; python_version >= '3.6'",
47
+ "invoke==2.2.0; python_version >= '3.6'",
48
+ "multidict==6.5.0; python_version >= '3.9'",
49
+ "pillow==11.2.1; python_version >= '3.9'",
50
+ "propcache==0.3.2; python_version >= '3.9'",
51
+ "protobuf==6.31.1; python_version >= '3.9'",
52
+ "pydantic==2.11.7; python_version >= '3.9'",
53
+ "pydantic-core==2.33.2; python_version >= '3.9'",
54
+ "setuptools==80.9.0; python_version >= '3.9'",
55
+ "types-protobuf==6.30.2.20250516; python_version >= '3.9'",
56
+ "typing-extensions==4.14.0; python_version >= '3.9'",
57
+ "typing-inspection==0.4.1; python_version >= '3.9'",
58
+ "yarl==1.20.1; python_version >= '3.9'",
59
+ ],
60
+ extras_require={
61
+ "dev": [
62
+ "pytest",
63
+ "pytest-cov",
64
+ "flake8",
65
+ "black",
66
+ "mypy",
67
+ ],
68
+ "grpcio-tools": ["grpcio-tools==1.72.1; python_version >= '3.9'"],
69
+ },
70
+ tests_require=["pytest", "pytest-cov", "flake8", "black", "mypy"],
71
+ package_data={"rapida-python": ["py.typed"]},
72
+ python_requires=">=3.9",
73
+ include_package_data=True,
74
+ )
@@ -1,6 +0,0 @@
1
- grpcio==1.65.4
2
- protobuf==5.27.3
3
- pillow==10.4.0
4
-
5
- [grpcio-tools]
6
- grpcio-tools==1.60.0
@@ -1,44 +0,0 @@
1
- #!/usr/bin/env python
2
- import os.path
3
-
4
- from setuptools import find_packages, setup
5
-
6
-
7
- def read(*parts):
8
- with open(os.path.join(*parts)) as f:
9
- return f.read().strip()
10
-
11
-
12
- classifiers = [
13
- "Development Status :: 5 - Production/Stable",
14
- "Programming Language :: Python :: 3.9",
15
- "Environment :: Web Environment",
16
- "Intended Audience :: Developers",
17
- ]
18
-
19
- VERSION = {}
20
- # version.py defines VERSION and VERSION_SHORT variables.
21
- # We use exec here to read it so that we don't import scispacy
22
- with open("rapida/version.py") as version_file:
23
- exec(version_file.read(), VERSION)
24
-
25
- setup(
26
- name="rapida-python",
27
- version=VERSION["VERSION"],
28
- author_email="code@rapida.ai",
29
- description="rapidaAi sdk to integrate rapida.ai api's",
30
- long_description=read("README.md"),
31
- long_description_content_type="text/markdown",
32
- classifiers=classifiers,
33
- platforms=["POSIX"],
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"],
37
- extras_require={
38
- "grpcio-tools": ["grpcio-tools==1.60.0"],
39
- },
40
- tests_require=["pytest", "pytest-cov", "flake8", "black", "mypy"],
41
- package_data={"rapida-python": ["py.typed"]},
42
- python_requires=">=3.9",
43
- include_package_data=True,
44
- )