openrtc 0.0.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.
@@ -0,0 +1 @@
1
+ 3.13
openrtc-0.0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Mahimai Raja J
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
openrtc-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: openrtc
3
+ Version: 0.0.1
4
+ Summary: OpenRTC Python
5
+ Project-URL: Homepage, https://github.com/mahimailabs/openrtc
6
+ Project-URL: Repository, https://github.com/mahimailabs/openrtc
7
+ Project-URL: Issues, https://github.com/mahimailabs/openrtc/issues
8
+ Author-email: Mahimai Raja J <hello@mahimai.dev>
9
+ License-Expression: MIT
10
+ License-File: LICENSE
11
+ Keywords: AI,agents,audio,livekit,openrtc,realtime,webrtc
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3 :: Only
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Programming Language :: Python :: 3.14
21
+ Classifier: Topic :: Multimedia :: Sound/Audio
22
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
23
+ Requires-Python: <3.15,>=3.10
24
+ Description-Content-Type: text/markdown
25
+
26
+ # openrtc-python
27
+ A useful framework for Voice Agents
@@ -0,0 +1,2 @@
1
+ # openrtc-python
2
+ A useful framework for Voice Agents
@@ -0,0 +1,68 @@
1
+ [project]
2
+ name = "openrtc"
3
+ version = "0.0.1"
4
+ description = "OpenRTC Python"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Mahimai Raja J", email = "hello@mahimai.dev" }
8
+ ]
9
+ keywords = ["webrtc", "realtime", "audio", "openrtc", "livekit", "agents", "AI"]
10
+ classifiers = [
11
+ "Intended Audience :: Developers",
12
+ "License :: OSI Approved :: MIT License",
13
+ "Topic :: Multimedia :: Sound/Audio",
14
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
15
+ "Programming Language :: Python :: 3",
16
+ "Programming Language :: Python :: 3.10",
17
+ "Programming Language :: Python :: 3.11",
18
+ "Programming Language :: Python :: 3.12",
19
+ "Programming Language :: Python :: 3.13",
20
+ "Programming Language :: Python :: 3.14",
21
+ "Programming Language :: Python :: 3 :: Only",
22
+ ]
23
+ license = "MIT"
24
+ requires-python = ">=3.10,<3.15"
25
+ dependencies = []
26
+
27
+ [project.urls]
28
+ Homepage = "https://github.com/mahimailabs/openrtc"
29
+ Repository = "https://github.com/mahimailabs/openrtc"
30
+ Issues = "https://github.com/mahimailabs/openrtc/issues"
31
+
32
+ [build-system]
33
+ requires = ["hatchling"]
34
+ build-backend = "hatchling.build"
35
+
36
+
37
+ [tool.pyright]
38
+ typeCheckingMode = "off"
39
+
40
+ [tool.ruff]
41
+ target-version = "py311"
42
+ line-length = 88
43
+
44
+ [tool.ruff.lint]
45
+ select = [
46
+ "E", # pycodestyle errors
47
+ "W", # pycodestyle warnings
48
+ "F", # pyflakes
49
+ "I", # isort
50
+ "B", # flake8-bugbear
51
+ "C4", # flake8-comprehensions
52
+ "UP", # pyupgrade
53
+ ]
54
+ ignore = [
55
+ "E501", # line too long, handled by black
56
+ "B008", # do not perform function calls in argument defaults
57
+ "C901", # too complex
58
+ "W191", # indentation contains tabs
59
+ ]
60
+
61
+ [tool.mypy]
62
+ python_version = "3.10"
63
+ warn_return_any = true
64
+ warn_unused_configs = true
65
+ ignore_missing_imports = true
66
+
67
+ [tool.hatch.build.targets.wheel]
68
+ packages = ["src/openrtc_python"]
@@ -0,0 +1,2 @@
1
+ def hello() -> str:
2
+ return "Hello from openrtc-python!"
File without changes