-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (36 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "evez-machine-voice"
version = "1.0.0"
description = "Synthesize robotic machine voices from pure math. 5-stage human→machine voice transformation."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Steven Crawford-Maggard", email = "steven@evez-os.ai"},
]
keywords = ["voice", "synthesis", "formant", "robot", "machine", "evez", "tts"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Multimedia :: Sound/Audio :: Sound Synthesis",
]
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
"soundfile>=0.12",
]
[project.optional-dependencies]
dev = ["pytest>=7.0", "pytest-asyncio", "ruff"]
[project.urls]
Homepage = "https://evez-os.ai"
Repository = "https://github.com/EvezArt/evez-os"
[project.scripts]
evez-voice = "evez_machine_voice.cli:main"
[tool.setuptools.packages.find]
where = ["src"]