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.
@@ -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,4 @@
1
+ build
2
+ dist
3
+ evez-machine-voice
4
+ src
@@ -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,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,6 @@
1
+ from setuptools import setup, find_packages
2
+ setup(
3
+ name="placeholder",
4
+ version="1.0.0",
5
+ packages=find_packages(),
6
+ )
@@ -0,0 +1,6 @@
1
+ """
2
+ EVEZ Machine Voice — synthesize robotic machine voices from pure math.
3
+ 5-stage human→machine voice transformation pipeline.
4
+ """
5
+ __version__ = "1.0.0"
6
+ __author__ = "Steven Crawford-Maggard"
@@ -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())