livekit-plugins-google 0.5.1__tar.gz → 0.6.dev0__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.
- {livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/PKG-INFO +12 -3
- {livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/livekit/plugins/google/tts.py +1 -2
- {livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/livekit/plugins/google/version.py +1 -1
- {livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/livekit_plugins_google.egg-info/PKG-INFO +12 -3
- livekit_plugins_google-0.6.dev0/livekit_plugins_google.egg-info/requires.txt +10 -0
- {livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/setup.py +11 -2
- livekit_plugins_google-0.5.1/livekit_plugins_google.egg-info/requires.txt +0 -3
- {livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/README.md +0 -0
- {livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/livekit/plugins/google/__init__.py +0 -0
- {livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/livekit/plugins/google/log.py +0 -0
- {livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/livekit/plugins/google/models.py +0 -0
- {livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/livekit/plugins/google/py.typed +0 -0
- {livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/livekit/plugins/google/stt.py +0 -0
- {livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/livekit_plugins_google.egg-info/SOURCES.txt +0 -0
- {livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/livekit_plugins_google.egg-info/dependency_links.txt +0 -0
- {livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/livekit_plugins_google.egg-info/top_level.txt +0 -0
- {livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/pyproject.toml +0 -0
- {livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: livekit-plugins-google
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.6.dev0
|
4
4
|
Summary: Agent Framework plugin for services from Google Cloud
|
5
5
|
Home-page: https://github.com/livekit/agents
|
6
6
|
License: Apache-2.0
|
@@ -14,14 +14,23 @@ Classifier: Topic :: Multimedia :: Sound/Audio
|
|
14
14
|
Classifier: Topic :: Multimedia :: Video
|
15
15
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
16
16
|
Classifier: Programming Language :: Python :: 3
|
17
|
+
Classifier: Programming Language :: Python :: 3.7
|
18
|
+
Classifier: Programming Language :: Python :: 3.8
|
17
19
|
Classifier: Programming Language :: Python :: 3.9
|
18
20
|
Classifier: Programming Language :: Python :: 3.10
|
19
21
|
Classifier: Programming Language :: Python :: 3 :: Only
|
20
|
-
Requires-Python: >=3.
|
22
|
+
Requires-Python: >=3.7.0
|
21
23
|
Description-Content-Type: text/markdown
|
24
|
+
Requires-Dist: numpy<2,>=1
|
25
|
+
Requires-Dist: google-api-core<3,>=2
|
26
|
+
Requires-Dist: google-auth<3,>=2
|
27
|
+
Requires-Dist: google-cloud-core<3,>=2
|
22
28
|
Requires-Dist: google-cloud-speech<3,>=2
|
23
29
|
Requires-Dist: google-cloud-texttospeech<3,>=2
|
24
|
-
Requires-Dist:
|
30
|
+
Requires-Dist: google-cloud-translate<4,>=3
|
31
|
+
Requires-Dist: googleapis-common-protos<2,>=1
|
32
|
+
Requires-Dist: livekit~=0.11
|
33
|
+
Requires-Dist: livekit-agents~=0.8.dev0
|
25
34
|
|
26
35
|
# LiveKit Plugins Google
|
27
36
|
|
{livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/livekit/plugins/google/tts.py
RENAMED
@@ -20,8 +20,7 @@ from dataclasses import dataclass
|
|
20
20
|
from typing import Optional, Union
|
21
21
|
|
22
22
|
from livekit import rtc
|
23
|
-
from livekit.agents import tts
|
24
|
-
from livekit.agents.utils import codecs
|
23
|
+
from livekit.agents import codecs, tts
|
25
24
|
|
26
25
|
from google.cloud import texttospeech
|
27
26
|
from google.cloud.texttospeech_v1.types import (
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: livekit-plugins-google
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.6.dev0
|
4
4
|
Summary: Agent Framework plugin for services from Google Cloud
|
5
5
|
Home-page: https://github.com/livekit/agents
|
6
6
|
License: Apache-2.0
|
@@ -14,14 +14,23 @@ Classifier: Topic :: Multimedia :: Sound/Audio
|
|
14
14
|
Classifier: Topic :: Multimedia :: Video
|
15
15
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
16
16
|
Classifier: Programming Language :: Python :: 3
|
17
|
+
Classifier: Programming Language :: Python :: 3.7
|
18
|
+
Classifier: Programming Language :: Python :: 3.8
|
17
19
|
Classifier: Programming Language :: Python :: 3.9
|
18
20
|
Classifier: Programming Language :: Python :: 3.10
|
19
21
|
Classifier: Programming Language :: Python :: 3 :: Only
|
20
|
-
Requires-Python: >=3.
|
22
|
+
Requires-Python: >=3.7.0
|
21
23
|
Description-Content-Type: text/markdown
|
24
|
+
Requires-Dist: numpy<2,>=1
|
25
|
+
Requires-Dist: google-api-core<3,>=2
|
26
|
+
Requires-Dist: google-auth<3,>=2
|
27
|
+
Requires-Dist: google-cloud-core<3,>=2
|
22
28
|
Requires-Dist: google-cloud-speech<3,>=2
|
23
29
|
Requires-Dist: google-cloud-texttospeech<3,>=2
|
24
|
-
Requires-Dist:
|
30
|
+
Requires-Dist: google-cloud-translate<4,>=3
|
31
|
+
Requires-Dist: googleapis-common-protos<2,>=1
|
32
|
+
Requires-Dist: livekit~=0.11
|
33
|
+
Requires-Dist: livekit-agents~=0.8.dev0
|
25
34
|
|
26
35
|
# LiveKit Plugins Google
|
27
36
|
|
@@ -39,6 +39,8 @@ setuptools.setup(
|
|
39
39
|
"Topic :: Multimedia :: Video",
|
40
40
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
41
41
|
"Programming Language :: Python :: 3",
|
42
|
+
"Programming Language :: Python :: 3.7",
|
43
|
+
"Programming Language :: Python :: 3.8",
|
42
44
|
"Programming Language :: Python :: 3.9",
|
43
45
|
"Programming Language :: Python :: 3.10",
|
44
46
|
"Programming Language :: Python :: 3 :: Only",
|
@@ -46,11 +48,18 @@ setuptools.setup(
|
|
46
48
|
keywords=["webrtc", "realtime", "audio", "video", "livekit"],
|
47
49
|
license="Apache-2.0",
|
48
50
|
packages=setuptools.find_namespace_packages(include=["livekit.*"]),
|
49
|
-
python_requires=">=3.
|
51
|
+
python_requires=">=3.7.0",
|
50
52
|
install_requires=[
|
53
|
+
"numpy >= 1, < 2",
|
54
|
+
"google-api-core >= 2, < 3",
|
55
|
+
"google-auth >= 2, < 3",
|
56
|
+
"google-cloud-core >= 2, < 3",
|
51
57
|
"google-cloud-speech >= 2, < 3",
|
52
58
|
"google-cloud-texttospeech >= 2, < 3",
|
53
|
-
"
|
59
|
+
"google-cloud-translate >= 3, < 4",
|
60
|
+
"googleapis-common-protos >= 1, < 2",
|
61
|
+
"livekit ~= 0.11",
|
62
|
+
"livekit-agents~=0.8.dev0",
|
54
63
|
],
|
55
64
|
package_data={
|
56
65
|
"livekit.plugins.google": ["py.typed"],
|
File without changes
|
{livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/livekit/plugins/google/__init__.py
RENAMED
File without changes
|
{livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/livekit/plugins/google/log.py
RENAMED
File without changes
|
{livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/livekit/plugins/google/models.py
RENAMED
File without changes
|
{livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/livekit/plugins/google/py.typed
RENAMED
File without changes
|
{livekit_plugins_google-0.5.1 → livekit_plugins_google-0.6.dev0}/livekit/plugins/google/stt.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|