piper-tts-plus 1.2.0__tar.gz → 20250618.62627__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.
- {piper_tts_plus-1.2.0/piper_tts_plus.egg-info → piper_tts_plus-20250618.62627}/PKG-INFO +5 -5
- {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627/piper_tts_plus.egg-info}/PKG-INFO +5 -5
- {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/setup.py +5 -5
- {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/MANIFEST.in +0 -0
- {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper/__init__.py +0 -0
- {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper/__main__.py +0 -0
- {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper/config.py +0 -0
- {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper/const.py +0 -0
- {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper/download.py +0 -0
- {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper/file_hash.py +0 -0
- {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper/http_server.py +0 -0
- {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper/util.py +0 -0
- {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper/voice.py +0 -0
- {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper/voices.json +0 -0
- {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper_tts_plus.egg-info/SOURCES.txt +0 -0
- {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper_tts_plus.egg-info/dependency_links.txt +0 -0
- {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper_tts_plus.egg-info/entry_points.txt +0 -0
- {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper_tts_plus.egg-info/requires.txt +0 -0
- {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper_tts_plus.egg-info/top_level.txt +0 -0
- {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/requirements.txt +0 -0
- {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/setup.cfg +0 -0
@@ -1,12 +1,12 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: piper-tts-plus
|
3
|
-
Version:
|
3
|
+
Version: 20250618.62627
|
4
4
|
Summary: A fast, local neural text to speech system that sounds great and is optimized for the Raspberry Pi 4.
|
5
|
-
Home-page:
|
6
|
-
Author:
|
7
|
-
Author-email:
|
5
|
+
Home-page: https://github.com/ayutaz/piper-plus
|
6
|
+
Author: yousan
|
7
|
+
Author-email: rabbitcats77@gmail.com
|
8
8
|
License: MIT
|
9
|
-
Keywords:
|
9
|
+
Keywords: piper japanese and other languages tts
|
10
10
|
Classifier: Development Status :: 3 - Alpha
|
11
11
|
Classifier: Intended Audience :: Developers
|
12
12
|
Classifier: Topic :: Text Processing :: Linguistic
|
@@ -1,12 +1,12 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: piper-tts-plus
|
3
|
-
Version:
|
3
|
+
Version: 20250618.62627
|
4
4
|
Summary: A fast, local neural text to speech system that sounds great and is optimized for the Raspberry Pi 4.
|
5
|
-
Home-page:
|
6
|
-
Author:
|
7
|
-
Author-email:
|
5
|
+
Home-page: https://github.com/ayutaz/piper-plus
|
6
|
+
Author: yousan
|
7
|
+
Author-email: rabbitcats77@gmail.com
|
8
8
|
License: MIT
|
9
|
-
Keywords:
|
9
|
+
Keywords: piper japanese and other languages tts
|
10
10
|
Classifier: Development Status :: 3 - Alpha
|
11
11
|
Classifier: Intended Audience :: Developers
|
12
12
|
Classifier: Topic :: Text Processing :: Linguistic
|
@@ -19,11 +19,11 @@ data_files = [module_dir / "voices.json"]
|
|
19
19
|
|
20
20
|
setup(
|
21
21
|
name="piper-tts-plus",
|
22
|
-
version="
|
22
|
+
version="20250618.062627",
|
23
23
|
description="A fast, local neural text to speech system that sounds great and is optimized for the Raspberry Pi 4.",
|
24
|
-
url="
|
25
|
-
author="
|
26
|
-
author_email="
|
24
|
+
url="https://github.com/ayutaz/piper-plus",
|
25
|
+
author="yousan",
|
26
|
+
author_email="rabbitcats77@gmail.com",
|
27
27
|
license="MIT",
|
28
28
|
packages=setuptools.find_packages(),
|
29
29
|
package_data={"piper": [str(p.relative_to(module_dir)) for p in data_files]},
|
@@ -44,5 +44,5 @@ setup(
|
|
44
44
|
"Programming Language :: Python :: 3.9",
|
45
45
|
"Programming Language :: Python :: 3.10",
|
46
46
|
],
|
47
|
-
keywords="
|
47
|
+
keywords="piper japanese and other languages tts",
|
48
48
|
)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper_tts_plus.egg-info/dependency_links.txt
RENAMED
File without changes
|
{piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper_tts_plus.egg-info/entry_points.txt
RENAMED
File without changes
|
File without changes
|
{piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper_tts_plus.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|