evez-machine-voice 1.0.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.
- evez_machine_voice-1.0.0/PKG-INFO +19 -0
- evez_machine_voice-1.0.0/README.md +10 -0
- evez_machine_voice-1.0.0/evez-machine-voice/__init__.py +1 -0
- evez_machine_voice-1.0.0/evez_machine_voice.egg-info/PKG-INFO +19 -0
- evez_machine_voice-1.0.0/evez_machine_voice.egg-info/SOURCES.txt +10 -0
- evez_machine_voice-1.0.0/evez_machine_voice.egg-info/dependency_links.txt +1 -0
- evez_machine_voice-1.0.0/evez_machine_voice.egg-info/top_level.txt +4 -0
- evez_machine_voice-1.0.0/pyproject.toml +15 -0
- evez_machine_voice-1.0.0/setup.cfg +4 -0
- evez_machine_voice-1.0.0/setup.py +6 -0
- evez_machine_voice-1.0.0/src/evez_machine_voice/__init__.py +6 -0
- evez_machine_voice-1.0.0/src/evez_machine_voice/cli.py +11 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: evez-machine-voice
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: EVEZ evez-machine-voice
|
|
5
|
+
Author: Steven Crawford-Maggard
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# evez-machine-voice
|
|
11
|
+
|
|
12
|
+
Synthesize robotic machine voices from pure math. 5-stage human→machine voice transformation.
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
pip install evez-machine-voice
|
|
16
|
+
evez-voice
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Part of the [EVEZ-OS](https://github.com/EvezArt/evez-os) autonomous AI mesh.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# evez-machine-voice
|
|
2
|
+
|
|
3
|
+
Synthesize robotic machine voices from pure math. 5-stage human→machine voice transformation.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
pip install evez-machine-voice
|
|
7
|
+
evez-voice
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
Part of the [EVEZ-OS](https://github.com/EvezArt/evez-os) autonomous AI mesh.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# evez-machine-voice
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: evez-machine-voice
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: EVEZ evez-machine-voice
|
|
5
|
+
Author: Steven Crawford-Maggard
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# evez-machine-voice
|
|
11
|
+
|
|
12
|
+
Synthesize robotic machine voices from pure math. 5-stage human→machine voice transformation.
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
pip install evez-machine-voice
|
|
16
|
+
evez-voice
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Part of the [EVEZ-OS](https://github.com/EvezArt/evez-os) autonomous AI mesh.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
setup.py
|
|
4
|
+
evez-machine-voice/__init__.py
|
|
5
|
+
evez_machine_voice.egg-info/PKG-INFO
|
|
6
|
+
evez_machine_voice.egg-info/SOURCES.txt
|
|
7
|
+
evez_machine_voice.egg-info/dependency_links.txt
|
|
8
|
+
evez_machine_voice.egg-info/top_level.txt
|
|
9
|
+
src/evez_machine_voice/__init__.py
|
|
10
|
+
src/evez_machine_voice/cli.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "evez-machine-voice"
|
|
7
|
+
version = "1.0.0"
|
|
8
|
+
description = "EVEZ evez-machine-voice"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [{name = "Steven Crawford-Maggard"}]
|
|
13
|
+
|
|
14
|
+
[tool.setuptools.packages.find]
|
|
15
|
+
where = ["."]
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"""CLI entry point for evez-machine-voice."""
|
|
2
|
+
import sys
|
|
3
|
+
|
|
4
|
+
def main():
|
|
5
|
+
print("EVEZ Machine Voice v1.0.0")
|
|
6
|
+
print("5-stage human→machine voice transformation from pure math.")
|
|
7
|
+
print("See https://evez-os.ai for full documentation.")
|
|
8
|
+
return 0
|
|
9
|
+
|
|
10
|
+
if __name__ == "__main__":
|
|
11
|
+
sys.exit(main())
|