Skip to content
Open
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
9 changes: 0 additions & 9 deletions MANIFEST.in

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ print(model.available_voices)
### Using with GPU

```
pip install -r requirements_gpu.txt
pip install -e .[gpu,nvidia]
```

```python
Expand Down
3 changes: 0 additions & 3 deletions kittentts/__index__.py

This file was deleted.

2 changes: 1 addition & 1 deletion kittentts/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from kittentts.get_model import get_model, KittenTTS

__version__ = "0.1.0"
__version__ = "0.8.1"
__author__ = "KittenML"
__description__ = "Ultra-lightweight text-to-speech model with just 15 million parameters"

Expand Down
48 changes: 34 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,41 +1,61 @@
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "kittentts"
version = "0.8.1"
description = "Ultra-lightweight text-to-speech model with just 15 million parameters"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "Apache 2.0"}
license = "Apache-2.0"
authors = [
{name = "KittenML"}
]
keywords = ["text-to-speech", "tts", "speech-synthesis", "neural-networks", "onnx"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"num2words",
"spacy",
"espeakng_loader",
"huggingface_hub",
"misaki[en]>=0.9.4",
"num2words",
"numpy",
"onnxruntime",
"soundfile",
"numpy",
"huggingface_hub",
"spacy",
]
dynamic = ["version"]

[project.optional-dependencies]
gpu = [
"onnxruntime-gpu",
]
nvidia = [
"nvidia-cublas-cu12",
"nvidia-cuda-runtime-cu12",
"nvidia-cudnn-cu12",
"nvidia-cufft-cu12",
"nvidia-curand-cu12",
"nvidia-cusolver-cu12",
"nvidia-cusparse-cu12",
"nvidia-nvjitlink-cu12",
]

[project.urls]
Homepage = "https://github.com/kittenml/kittentts"
Repository = "https://github.com/kittenml/kittentts"
Issues = "https://github.com/kittenml/kittentts/issues"

[tool.setuptools.packages.find]
where = ["."]
include = ["kittentts*"]

[tool.setuptools.package-data]
kittentts = ["*.json", "*.txt", "*.onnx"]
[tool.hatch.version]
path = "kittentts/__init__.py"
8 changes: 0 additions & 8 deletions requirements.txt

This file was deleted.

16 changes: 0 additions & 16 deletions requirements_gpu.txt

This file was deleted.

46 changes: 0 additions & 46 deletions setup.py

This file was deleted.