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.
Files changed (21) hide show
  1. {piper_tts_plus-1.2.0/piper_tts_plus.egg-info → piper_tts_plus-20250618.62627}/PKG-INFO +5 -5
  2. {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627/piper_tts_plus.egg-info}/PKG-INFO +5 -5
  3. {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/setup.py +5 -5
  4. {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/MANIFEST.in +0 -0
  5. {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper/__init__.py +0 -0
  6. {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper/__main__.py +0 -0
  7. {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper/config.py +0 -0
  8. {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper/const.py +0 -0
  9. {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper/download.py +0 -0
  10. {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper/file_hash.py +0 -0
  11. {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper/http_server.py +0 -0
  12. {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper/util.py +0 -0
  13. {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper/voice.py +0 -0
  14. {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper/voices.json +0 -0
  15. {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper_tts_plus.egg-info/SOURCES.txt +0 -0
  16. {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper_tts_plus.egg-info/dependency_links.txt +0 -0
  17. {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper_tts_plus.egg-info/entry_points.txt +0 -0
  18. {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper_tts_plus.egg-info/requires.txt +0 -0
  19. {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/piper_tts_plus.egg-info/top_level.txt +0 -0
  20. {piper_tts_plus-1.2.0 → piper_tts_plus-20250618.62627}/requirements.txt +0 -0
  21. {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: 1.2.0
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: http://github.com/rhasspy/piper
6
- Author: Michael Hansen
7
- Author-email: mike@rhasspy.org
5
+ Home-page: https://github.com/ayutaz/piper-plus
6
+ Author: yousan
7
+ Author-email: rabbitcats77@gmail.com
8
8
  License: MIT
9
- Keywords: rhasspy piper tts
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: 1.2.0
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: http://github.com/rhasspy/piper
6
- Author: Michael Hansen
7
- Author-email: mike@rhasspy.org
5
+ Home-page: https://github.com/ayutaz/piper-plus
6
+ Author: yousan
7
+ Author-email: rabbitcats77@gmail.com
8
8
  License: MIT
9
- Keywords: rhasspy piper tts
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="1.2.0",
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="http://github.com/rhasspy/piper",
25
- author="Michael Hansen",
26
- author_email="mike@rhasspy.org",
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="rhasspy piper tts",
47
+ keywords="piper japanese and other languages tts",
48
48
  )