livekit-plugins-minimal 0.2.0.dev7__tar.gz → 0.2.2__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 livekit-plugins-minimal might be problematic. Click here for more details.
- {livekit_plugins_minimal-0.2.0.dev7 → livekit_plugins_minimal-0.2.2}/PKG-INFO +13 -3
- {livekit_plugins_minimal-0.2.0.dev7 → livekit_plugins_minimal-0.2.2}/livekit/plugins/minimal/__init__.py +2 -4
- livekit_plugins_minimal-0.2.2/livekit/plugins/minimal/log.py +3 -0
- {livekit_plugins_minimal-0.2.0.dev7 → livekit_plugins_minimal-0.2.2}/livekit/plugins/minimal/version.py +1 -1
- {livekit_plugins_minimal-0.2.0.dev7 → livekit_plugins_minimal-0.2.2}/livekit_plugins_minimal.egg-info/PKG-INFO +13 -3
- {livekit_plugins_minimal-0.2.0.dev7 → livekit_plugins_minimal-0.2.2}/livekit_plugins_minimal.egg-info/SOURCES.txt +1 -0
- livekit_plugins_minimal-0.2.2/livekit_plugins_minimal.egg-info/requires.txt +1 -0
- {livekit_plugins_minimal-0.2.0.dev7 → livekit_plugins_minimal-0.2.2}/setup.py +1 -1
- livekit_plugins_minimal-0.2.0.dev7/livekit_plugins_minimal.egg-info/requires.txt +0 -1
- {livekit_plugins_minimal-0.2.0.dev7 → livekit_plugins_minimal-0.2.2}/README.md +0 -0
- {livekit_plugins_minimal-0.2.0.dev7 → livekit_plugins_minimal-0.2.2}/livekit_plugins_minimal.egg-info/dependency_links.txt +0 -0
- {livekit_plugins_minimal-0.2.0.dev7 → livekit_plugins_minimal-0.2.2}/livekit_plugins_minimal.egg-info/top_level.txt +0 -0
- {livekit_plugins_minimal-0.2.0.dev7 → livekit_plugins_minimal-0.2.2}/pyproject.toml +0 -0
- {livekit_plugins_minimal-0.2.0.dev7 → livekit_plugins_minimal-0.2.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: livekit-plugins-minimal
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Minimal plugin template for LiveKit Agents
|
|
5
5
|
Home-page: https://github.com/livekit/agents
|
|
6
6
|
License: Apache-2.0
|
|
@@ -19,7 +19,17 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
19
19
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
20
20
|
Requires-Python: >=3.9.0
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
|
-
Requires-Dist: livekit-agents
|
|
22
|
+
Requires-Dist: livekit-agents<1.0.0,>=0.12.16
|
|
23
|
+
Dynamic: classifier
|
|
24
|
+
Dynamic: description
|
|
25
|
+
Dynamic: description-content-type
|
|
26
|
+
Dynamic: home-page
|
|
27
|
+
Dynamic: keywords
|
|
28
|
+
Dynamic: license
|
|
29
|
+
Dynamic: project-url
|
|
30
|
+
Dynamic: requires-dist
|
|
31
|
+
Dynamic: requires-python
|
|
32
|
+
Dynamic: summary
|
|
23
33
|
|
|
24
34
|
# LiveKit Plugins Minimal
|
|
25
35
|
|
|
@@ -14,15 +14,13 @@
|
|
|
14
14
|
|
|
15
15
|
from livekit.agents import Plugin
|
|
16
16
|
|
|
17
|
+
from .log import logger
|
|
17
18
|
from .version import __version__
|
|
18
19
|
|
|
19
20
|
|
|
20
21
|
class MinimalPlugin(Plugin):
|
|
21
22
|
def __init__(self):
|
|
22
|
-
super().__init__(__name__, __version__, __package__)
|
|
23
|
-
|
|
24
|
-
def download_files(self):
|
|
25
|
-
pass
|
|
23
|
+
super().__init__(__name__, __version__, __package__, logger)
|
|
26
24
|
|
|
27
25
|
|
|
28
26
|
Plugin.register_plugin(MinimalPlugin())
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: livekit-plugins-minimal
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Minimal plugin template for LiveKit Agents
|
|
5
5
|
Home-page: https://github.com/livekit/agents
|
|
6
6
|
License: Apache-2.0
|
|
@@ -19,7 +19,17 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
19
19
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
20
20
|
Requires-Python: >=3.9.0
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
|
-
Requires-Dist: livekit-agents
|
|
22
|
+
Requires-Dist: livekit-agents<1.0.0,>=0.12.16
|
|
23
|
+
Dynamic: classifier
|
|
24
|
+
Dynamic: description
|
|
25
|
+
Dynamic: description-content-type
|
|
26
|
+
Dynamic: home-page
|
|
27
|
+
Dynamic: keywords
|
|
28
|
+
Dynamic: license
|
|
29
|
+
Dynamic: project-url
|
|
30
|
+
Dynamic: requires-dist
|
|
31
|
+
Dynamic: requires-python
|
|
32
|
+
Dynamic: summary
|
|
23
33
|
|
|
24
34
|
# LiveKit Plugins Minimal
|
|
25
35
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
livekit-agents<1.0.0,>=0.12.16
|
|
@@ -47,7 +47,7 @@ setuptools.setup(
|
|
|
47
47
|
license="Apache-2.0",
|
|
48
48
|
packages=setuptools.find_namespace_packages(include=["livekit.*"]),
|
|
49
49
|
python_requires=">=3.9.0",
|
|
50
|
-
install_requires=["livekit-agents>=0.
|
|
50
|
+
install_requires=["livekit-agents>=0.12.16,<1.0.0"],
|
|
51
51
|
package_data={"livekit.plugins.minimal": ["py.typed"]},
|
|
52
52
|
project_urls={
|
|
53
53
|
"Documentation": "https://docs.livekit.io",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
livekit-agents>=0.8.0.dev0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|