[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcp-melotts"
version = "1.0.0"
description = "MCP server for text-to-speech using MeloTTS - generates audio from text"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "aardpro", email = "chileehong@outlook.com" }
]
keywords = ["mcp", "text-to-speech", "tts", "audio", "melo", "melotts"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mcp>=1.0.0",
"melo",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"ruff>=0.1.0",
]
[project.urls]
Homepage = "https://github.com/aardpro/mcp-melotts"
Repository = "https://github.com/aardpro/mcp-melotts"
Issues = "https://github.com/aardpro/mcp-melotts/issues"
[project.scripts]
mcp-melotts = "main:main"
[tool.hatch.build.targets.wheel]
packages = ["src/main"]
[tool.hatch.build]
include = [
"src/main/config.json",
]
[tool.hatch.build.targets.sdist]
include = [
"src/main",
"README.md",
"LICENSE",
"src/main/config.json",
]