gladiaio-sdk 0.1.0__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.
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.4
2
+ Name: gladiaio-sdk
3
+ Version: 0.1.0
4
+ Summary: Gladia SDK for Python
5
+ Requires-Python: <4,>=3.10
6
+ Requires-Dist: anyio==4.11.0
7
+ Requires-Dist: certifi==2025.8.3
8
+ Requires-Dist: dataclasses-json==0.6.7
9
+ Requires-Dist: exceptiongroup==1.3.0; python_full_version < '3.11'
10
+ Requires-Dist: h11==0.16.0
11
+ Requires-Dist: httpcore==1.0.9
12
+ Requires-Dist: httpx==0.28.1
13
+ Requires-Dist: idna==3.10
14
+ Requires-Dist: marshmallow==3.26.1
15
+ Requires-Dist: mypy-extensions==1.1.0
16
+ Requires-Dist: packaging==25.0
17
+ Requires-Dist: pyee==13.0.0
18
+ Requires-Dist: sniffio==1.3.1
19
+ Requires-Dist: typing-extensions==4.15.0
20
+ Requires-Dist: typing-inspect==0.9.0
21
+ Requires-Dist: websockets==15.0.1
22
+ Description-Content-Type: text/markdown
23
+
24
+ # Gladia Python SDK
25
+
26
+ Project description here.
@@ -0,0 +1,3 @@
1
+ # Gladia Python SDK
2
+
3
+ Project description here.
@@ -0,0 +1,47 @@
1
+ dependency-groups = { }
2
+
3
+ [project]
4
+ name = "gladiaio-sdk"
5
+ version = "0.1.0"
6
+ description = "Gladia SDK for Python"
7
+ requires-python = ">=3.10,<4"
8
+ readme = "README.md"
9
+ dependencies = [
10
+ "anyio==4.11.0",
11
+ "certifi==2025.8.3",
12
+ "dataclasses-json==0.6.7",
13
+ "exceptiongroup==1.3.0 ; python_full_version < '3.11'",
14
+ "h11==0.16.0",
15
+ "httpcore==1.0.9",
16
+ "httpx==0.28.1",
17
+ "idna==3.10",
18
+ "marshmallow==3.26.1",
19
+ "mypy-extensions==1.1.0",
20
+ "packaging==25.0",
21
+ "pyee==13.0.0",
22
+ "sniffio==1.3.1",
23
+ "typing-extensions==4.15.0",
24
+ "typing-inspect==0.9.0",
25
+ "websockets==15.0.1"
26
+ ]
27
+
28
+ [build-system]
29
+ requires = [ "hatchling" ]
30
+ build-backend = "hatchling.build"
31
+
32
+ [tool.hatch.build]
33
+ include = [ "src/gladiaio_sdk/py.typed" ]
34
+
35
+ [tool.hatch.build.targets.wheel]
36
+ packages = [ "src/gladiaio_sdk" ]
37
+
38
+ [tool.ruff]
39
+ exclude = [ ".ruff_cache", ".svn", ".tox", ".venv", "dist" ]
40
+ line-length = 100
41
+ indent-width = 2
42
+
43
+ [tool.ruff.lint]
44
+ select = [ "E", "F", "UP", "B", "SIM", "I" ]
45
+ ignore = [ ]
46
+ fixable = [ "ALL" ]
47
+ unfixable = [ ]
File without changes