pyproject.tomlโข1.19 kB
[project]
name = "aimusic-mcp"
version = "1.0.6"
description = "The MCP server of MusicMCP.AI - AI Music Generation Platform"
authors = [
{ name = "MusicMCP.AI Team", email = "support@musicmcp.ai" }
]
readme = "README.md"
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",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Software Development :: Libraries :: Python Modules"
]
keywords = [
"aimusic",
"musicmcp",
"mcp",
"music",
"song",
"ai",
"generate",
"model-context-protocol"
]
requires-python = ">=3.10"
dependencies = [
"mcp[cli]>=1.6.0",
"httpx>=0.24.0"
]
[project.scripts]
aimusic-mcp = "musicmcp_ai_mcp.api:main"
[project.urls]
Homepage = "https://www.musicmcp.ai"
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v --tb=short"