Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
build
kittentts.egg-info
__pycache__
33 changes: 19 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,29 @@ version = "0.1.0"
description = "Ultra-lightweight text-to-speech model with just 15 million parameters"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "Apache 2.0"}
authors = [
{name = "KittenML"}
license = { text = "Apache 2.0" }
authors = [{ name = "KittenML" }]
keywords = [
"text-to-speech",
"tts",
"speech-synthesis",
"neural-networks",
"onnx",
]
keywords = ["text-to-speech", "tts", "speech-synthesis", "neural-networks", "onnx"]
classifiers = [
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"num2words",
"spacy",
"espeakng_loader",
"misaki[en]>=0.9.4",
"onnxruntime",
"soundfile",
"numpy",
"huggingface_hub",
"num2words",
"spacy>=3.8.0",
"espeakng_loader",
"misaki>=0.7.4",
"phonemizer",
"onnxruntime",
"soundfile",
"numpy>=1.26.0",
"huggingface_hub",
]

[project.urls]
Expand Down
7 changes: 4 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
num2words
spacy
spacy>=3.8.0
espeakng_loader
misaki[en]>=0.9.4
misaki>=0.7.4
phonemizer
onnxruntime
soundfile
numpy
numpy>=1.26.0
huggingface_hub
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,20 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
python_requires=">=3.8",
install_requires=[
"num2words",
"spacy",
"spacy>=3.8.0",
"espeakng_loader",
"misaki[en]>=0.9.4",
"misaki>=0.7.4",
"phonemizer",
"onnxruntime",
"soundfile",
"numpy",
"numpy>=1.26.0",
"huggingface_hub",
],
keywords="text-to-speech, tts, speech-synthesis, neural-networks, onnx",
Expand Down