livekit-plugins-minimal 0.2.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.
Potentially problematic release.
This version of livekit-plugins-minimal might be problematic. Click here for more details.
- livekit_plugins_minimal-0.2.0/PKG-INFO +37 -0
- livekit_plugins_minimal-0.2.0/README.md +14 -0
- livekit_plugins_minimal-0.2.0/livekit/plugins/minimal/__init__.py +28 -0
- livekit_plugins_minimal-0.2.0/livekit/plugins/minimal/version.py +15 -0
- livekit_plugins_minimal-0.2.0/livekit_plugins_minimal.egg-info/PKG-INFO +37 -0
- livekit_plugins_minimal-0.2.0/livekit_plugins_minimal.egg-info/SOURCES.txt +10 -0
- livekit_plugins_minimal-0.2.0/livekit_plugins_minimal.egg-info/dependency_links.txt +1 -0
- livekit_plugins_minimal-0.2.0/livekit_plugins_minimal.egg-info/requires.txt +1 -0
- livekit_plugins_minimal-0.2.0/livekit_plugins_minimal.egg-info/top_level.txt +1 -0
- livekit_plugins_minimal-0.2.0/pyproject.toml +3 -0
- livekit_plugins_minimal-0.2.0/setup.cfg +4 -0
- livekit_plugins_minimal-0.2.0/setup.py +57 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: livekit-plugins-minimal
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Minimal plugin template for LiveKit Agents
|
|
5
|
+
Home-page: https://github.com/livekit/agents
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Documentation, https://docs.livekit.io
|
|
8
|
+
Project-URL: Website, https://livekit.io/
|
|
9
|
+
Project-URL: Source, https://github.com/livekit/agents
|
|
10
|
+
Keywords: webrtc,realtime,audio,video,livekit
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Topic :: Multimedia :: Sound/Audio
|
|
14
|
+
Classifier: Topic :: Multimedia :: Video
|
|
15
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
20
|
+
Requires-Python: >=3.9.0
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
Requires-Dist: livekit-agents>=0.8.0.dev0
|
|
23
|
+
|
|
24
|
+
# LiveKit Plugins Minimal
|
|
25
|
+
|
|
26
|
+
This is a minimal example of a LiveKit plugin for Agents.
|
|
27
|
+
|
|
28
|
+
### Developer note
|
|
29
|
+
|
|
30
|
+
When copying this directory over to create a new `livekit-plugins` package, make sure it's nested within the `livekit-plugins` folder and that the `"name"` field in `package.json` follows the proper naming convention for CI:
|
|
31
|
+
|
|
32
|
+
```json
|
|
33
|
+
{
|
|
34
|
+
"name": "livekit-plugins-<name>",
|
|
35
|
+
"private": true
|
|
36
|
+
}
|
|
37
|
+
```
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# LiveKit Plugins Minimal
|
|
2
|
+
|
|
3
|
+
This is a minimal example of a LiveKit plugin for Agents.
|
|
4
|
+
|
|
5
|
+
### Developer note
|
|
6
|
+
|
|
7
|
+
When copying this directory over to create a new `livekit-plugins` package, make sure it's nested within the `livekit-plugins` folder and that the `"name"` field in `package.json` follows the proper naming convention for CI:
|
|
8
|
+
|
|
9
|
+
```json
|
|
10
|
+
{
|
|
11
|
+
"name": "livekit-plugins-<name>",
|
|
12
|
+
"private": true
|
|
13
|
+
}
|
|
14
|
+
```
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Copyright 2023 LiveKit, Inc.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
from livekit.agents import Plugin
|
|
16
|
+
|
|
17
|
+
from .version import __version__
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class MinimalPlugin(Plugin):
|
|
21
|
+
def __init__(self):
|
|
22
|
+
super().__init__(__name__, __version__, __package__)
|
|
23
|
+
|
|
24
|
+
def download_files(self):
|
|
25
|
+
pass
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
Plugin.register_plugin(MinimalPlugin())
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Copyright 2023 LiveKit, Inc.
|
|
2
|
+
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
__version__ = "0.2.0"
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: livekit-plugins-minimal
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Minimal plugin template for LiveKit Agents
|
|
5
|
+
Home-page: https://github.com/livekit/agents
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Documentation, https://docs.livekit.io
|
|
8
|
+
Project-URL: Website, https://livekit.io/
|
|
9
|
+
Project-URL: Source, https://github.com/livekit/agents
|
|
10
|
+
Keywords: webrtc,realtime,audio,video,livekit
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Topic :: Multimedia :: Sound/Audio
|
|
14
|
+
Classifier: Topic :: Multimedia :: Video
|
|
15
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
20
|
+
Requires-Python: >=3.9.0
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
Requires-Dist: livekit-agents>=0.8.0.dev0
|
|
23
|
+
|
|
24
|
+
# LiveKit Plugins Minimal
|
|
25
|
+
|
|
26
|
+
This is a minimal example of a LiveKit plugin for Agents.
|
|
27
|
+
|
|
28
|
+
### Developer note
|
|
29
|
+
|
|
30
|
+
When copying this directory over to create a new `livekit-plugins` package, make sure it's nested within the `livekit-plugins` folder and that the `"name"` field in `package.json` follows the proper naming convention for CI:
|
|
31
|
+
|
|
32
|
+
```json
|
|
33
|
+
{
|
|
34
|
+
"name": "livekit-plugins-<name>",
|
|
35
|
+
"private": true
|
|
36
|
+
}
|
|
37
|
+
```
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
setup.py
|
|
4
|
+
livekit/plugins/minimal/__init__.py
|
|
5
|
+
livekit/plugins/minimal/version.py
|
|
6
|
+
livekit_plugins_minimal.egg-info/PKG-INFO
|
|
7
|
+
livekit_plugins_minimal.egg-info/SOURCES.txt
|
|
8
|
+
livekit_plugins_minimal.egg-info/dependency_links.txt
|
|
9
|
+
livekit_plugins_minimal.egg-info/requires.txt
|
|
10
|
+
livekit_plugins_minimal.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
livekit-agents>=0.8.0.dev0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
livekit
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# Copyright 2023 LiveKit, Inc.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
import os
|
|
16
|
+
import pathlib
|
|
17
|
+
|
|
18
|
+
import setuptools
|
|
19
|
+
import setuptools.command.build_py
|
|
20
|
+
|
|
21
|
+
here = pathlib.Path(__file__).parent.resolve()
|
|
22
|
+
about = {}
|
|
23
|
+
with open(os.path.join(here, "livekit", "plugins", "minimal", "version.py"), "r") as f:
|
|
24
|
+
exec(f.read(), about)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
setuptools.setup(
|
|
28
|
+
name="livekit-plugins-minimal",
|
|
29
|
+
version=about["__version__"],
|
|
30
|
+
description="Minimal plugin template for LiveKit Agents",
|
|
31
|
+
long_description=(here / "README.md").read_text(encoding="utf-8"),
|
|
32
|
+
long_description_content_type="text/markdown",
|
|
33
|
+
url="https://github.com/livekit/agents",
|
|
34
|
+
cmdclass={},
|
|
35
|
+
classifiers=[
|
|
36
|
+
"Intended Audience :: Developers",
|
|
37
|
+
"License :: OSI Approved :: Apache Software License",
|
|
38
|
+
"Topic :: Multimedia :: Sound/Audio",
|
|
39
|
+
"Topic :: Multimedia :: Video",
|
|
40
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
41
|
+
"Programming Language :: Python :: 3",
|
|
42
|
+
"Programming Language :: Python :: 3.9",
|
|
43
|
+
"Programming Language :: Python :: 3.10",
|
|
44
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
45
|
+
],
|
|
46
|
+
keywords=["webrtc", "realtime", "audio", "video", "livekit"],
|
|
47
|
+
license="Apache-2.0",
|
|
48
|
+
packages=setuptools.find_namespace_packages(include=["livekit.*"]),
|
|
49
|
+
python_requires=">=3.9.0",
|
|
50
|
+
install_requires=["livekit-agents>=0.8.0.dev0"],
|
|
51
|
+
package_data={"livekit.plugins.minimal": ["py.typed"]},
|
|
52
|
+
project_urls={
|
|
53
|
+
"Documentation": "https://docs.livekit.io",
|
|
54
|
+
"Website": "https://livekit.io/",
|
|
55
|
+
"Source": "https://github.com/livekit/agents",
|
|
56
|
+
},
|
|
57
|
+
)
|