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.

@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: livekit-plugins-minimal
3
- Version: 0.2.0.dev7
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>=0.8.0.dev0
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())
@@ -0,0 +1,3 @@
1
+ import logging
2
+
3
+ logger = logging.getLogger("livekit.plugins.minimal")
@@ -12,4 +12,4 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- __version__ = "0.2.0-dev.7"
15
+ __version__ = "0.2.2"
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: livekit-plugins-minimal
3
- Version: 0.2.0.dev7
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>=0.8.0.dev0
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
 
@@ -2,6 +2,7 @@ README.md
2
2
  pyproject.toml
3
3
  setup.py
4
4
  livekit/plugins/minimal/__init__.py
5
+ livekit/plugins/minimal/log.py
5
6
  livekit/plugins/minimal/version.py
6
7
  livekit_plugins_minimal.egg-info/PKG-INFO
7
8
  livekit_plugins_minimal.egg-info/SOURCES.txt
@@ -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.8.0.dev0"],
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