pyproject.toml•721 B
[project]
name = "allvoicelab-mcp"
version = "0.0.5"
description = "AllVoiceLab MCP Server"
authors = [
{name = "AllVoiceLab", email = "tech@allvoicelab.com"}
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
dependencies = [
"build>=1.2.2.post1",
"mcp[cli]>=1.6.0",
"requests>=2.32.3",
"setuptools>=45",
"twine>=6.1.0",
]
keywords = [
"mcp",
"text-to-speech",
"speech-to-text",
"voice-cloning",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["client*", "allvoicelab_mcp*"]
[project.scripts]
allvoicelab-mcp = "allvoicelab_mcp.server:main"
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"