sopro 1.0.0__tar.gz → 1.0.1__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 (28) hide show
  1. {sopro-1.0.0 → sopro-1.0.1}/PKG-INFO +2 -2
  2. {sopro-1.0.0 → sopro-1.0.1}/README.md +1 -1
  3. {sopro-1.0.0 → sopro-1.0.1}/pyproject.toml +1 -1
  4. {sopro-1.0.0 → sopro-1.0.1}/src/Sopro.egg-info/PKG-INFO +2 -2
  5. {sopro-1.0.0 → sopro-1.0.1}/src/sopro/__init__.py +1 -1
  6. {sopro-1.0.0 → sopro-1.0.1}/LICENSE.txt +0 -0
  7. {sopro-1.0.0 → sopro-1.0.1}/setup.cfg +0 -0
  8. {sopro-1.0.0 → sopro-1.0.1}/src/Sopro.egg-info/SOURCES.txt +0 -0
  9. {sopro-1.0.0 → sopro-1.0.1}/src/Sopro.egg-info/dependency_links.txt +0 -0
  10. {sopro-1.0.0 → sopro-1.0.1}/src/Sopro.egg-info/entry_points.txt +0 -0
  11. {sopro-1.0.0 → sopro-1.0.1}/src/Sopro.egg-info/requires.txt +0 -0
  12. {sopro-1.0.0 → sopro-1.0.1}/src/Sopro.egg-info/top_level.txt +0 -0
  13. {sopro-1.0.0 → sopro-1.0.1}/src/sopro/audio.py +0 -0
  14. {sopro-1.0.0 → sopro-1.0.1}/src/sopro/cli.py +0 -0
  15. {sopro-1.0.0 → sopro-1.0.1}/src/sopro/codec/__init__.py +0 -0
  16. {sopro-1.0.0 → sopro-1.0.1}/src/sopro/codec/mimi.py +0 -0
  17. {sopro-1.0.0 → sopro-1.0.1}/src/sopro/config.py +0 -0
  18. {sopro-1.0.0 → sopro-1.0.1}/src/sopro/constants.py +0 -0
  19. {sopro-1.0.0 → sopro-1.0.1}/src/sopro/hub.py +0 -0
  20. {sopro-1.0.0 → sopro-1.0.1}/src/sopro/model.py +0 -0
  21. {sopro-1.0.0 → sopro-1.0.1}/src/sopro/nn/__init__.py +0 -0
  22. {sopro-1.0.0 → sopro-1.0.1}/src/sopro/nn/blocks.py +0 -0
  23. {sopro-1.0.0 → sopro-1.0.1}/src/sopro/nn/embeddings.py +0 -0
  24. {sopro-1.0.0 → sopro-1.0.1}/src/sopro/nn/speaker.py +0 -0
  25. {sopro-1.0.0 → sopro-1.0.1}/src/sopro/nn/xattn.py +0 -0
  26. {sopro-1.0.0 → sopro-1.0.1}/src/sopro/sampling.py +0 -0
  27. {sopro-1.0.0 → sopro-1.0.1}/src/sopro/streaming.py +0 -0
  28. {sopro-1.0.0 → sopro-1.0.1}/src/sopro/tokenizer.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sopro
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: A lightweight text-to-speech model with zero-shot voice cloning.
5
5
  Author-email: Samuel Vitorino <samvitorino@gmail.com>
6
6
  License: Apache 2.0
@@ -53,7 +53,7 @@ conda activate soprotts
53
53
  ### From PyPI
54
54
 
55
55
  ```bash
56
- pip install sopro-tts
56
+ pip install sopro
57
57
  ```
58
58
 
59
59
  ### From the repo
@@ -30,7 +30,7 @@ conda activate soprotts
30
30
  ### From PyPI
31
31
 
32
32
  ```bash
33
- pip install sopro-tts
33
+ pip install sopro
34
34
  ```
35
35
 
36
36
  ### From the repo
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "sopro"
7
- version = "1.0.0"
7
+ version = "1.0.1"
8
8
  description = "A lightweight text-to-speech model with zero-shot voice cloning."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sopro
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: A lightweight text-to-speech model with zero-shot voice cloning.
5
5
  Author-email: Samuel Vitorino <samvitorino@gmail.com>
6
6
  License: Apache 2.0
@@ -53,7 +53,7 @@ conda activate soprotts
53
53
  ### From PyPI
54
54
 
55
55
  ```bash
56
- pip install sopro-tts
56
+ pip install sopro
57
57
  ```
58
58
 
59
59
  ### From the repo
@@ -3,4 +3,4 @@ from __future__ import annotations
3
3
  from .model import SoproTTS
4
4
 
5
5
  __all__ = ["SoproTTS"]
6
- __version__ = "1.0.0"
6
+ __version__ = "1.0.1"
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
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes