Files
VoxCPM/pyproject.toml
T

100 lines
2.1 KiB
TOML
Raw Normal View History

2025-09-16 11:46:47 +08:00
[build-system]
requires = ["setuptools>=64", "wheel", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "voxcpm"
dynamic = ["version"]
2025-09-16 12:01:23 +08:00
description = "VoxCPM: Tokenizer-Free TTS for Context-Aware Speech Generation and True-to-Life Voice Cloning"
2025-09-16 11:46:47 +08:00
readme = "README.md"
license = "Apache-2.0"
authors = [
{name = "OpenBMB", email = "openbmb@gmail.com"}
]
maintainers = [
{name = "OpenBMB", email = "openbmb@gmail.com"}
]
keywords = ["voxcpm", "text-to-speech", "tts", "speech-synthesis", "voice-cloning", "ai", "deep-learning", "pytorch"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.10"
2025-09-16 11:46:47 +08:00
dependencies = [
2025-09-16 13:49:44 +08:00
"torch>=2.5.0",
"torchaudio>=2.5.0",
2026-01-02 21:00:23 +08:00
"torchcodec",
2025-09-16 13:49:44 +08:00
"transformers>=4.36.2",
2025-09-16 11:46:47 +08:00
"einops",
2025-12-05 21:00:01 +08:00
"gradio<6",
2025-09-16 11:46:47 +08:00
"inflect",
"addict",
2025-09-16 20:32:46 +08:00
"wetext",
2025-09-16 16:06:03 +08:00
"modelscope>=1.22.0",
2025-09-18 19:23:13 +08:00
"datasets>=3,<4",
2025-09-16 11:46:47 +08:00
"huggingface-hub",
"pydantic",
"tqdm",
2025-09-16 16:15:10 +08:00
"simplejson",
"sortedcontainers",
2025-09-16 11:46:47 +08:00
"soundfile",
"librosa",
"matplotlib",
2025-09-16 11:46:47 +08:00
"funasr",
2025-12-05 21:00:01 +08:00
"spaces",
"argbind",
"safetensors"
2025-09-16 11:46:47 +08:00
]
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov>=2.0",
"black>=21.0",
"flake8>=3.8",
"mypy>=0.800",
"pre-commit>=2.0",
]
[project.scripts]
voxcpm = "voxcpm.cli:main"
[project.urls]
Homepage = "https://github.com/OpenBMB/VoxCPM"
Repository = "https://github.com/OpenBMB/VoxCPM.git"
Documentation = "https://github.com/OpenBMB/VoxCPM#readme"
"Bug Tracker" = "https://github.com/OpenBMB/VoxCPM/issues"
[tool.setuptools.packages.find]
where = ["src"]
2025-09-16 13:22:20 +08:00
include = ["voxcpm*"]
2025-09-16 11:46:47 +08:00
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools_scm]
version_scheme = "post-release"
[tool.black]
line-length = 120
target-version = ['py310']
2025-09-16 11:46:47 +08:00
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''