[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "amazon-music-mcp"
version = "0.1.0"
description = "MCP server to control Amazon Music through Claude Desktop"
readme = "README.md"
authors = [
{name = "Meet Kavathiya", email = "meetkkavathiya@gmail.com"}
]
license = {text = "MIT"}
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"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",
]
keywords = ["mcp", "amazon-music", "claude", "music-control", "playwright"]
dependencies = [
"mcp>=0.1.0",
"playwright>=1.40.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"black>=23.0",
"mypy>=1.0",
]
[project.urls]
Homepage = "https://github.com/mk-8/amazon-music-mcp"
Documentation = "https://github.com/mk-8/amazon-music-mcp#README.md"
Repository = "https://github.com/mk-8/amazon-music-mcp"
Issues = "https://github.com/mk-8/amazon-music-mcp/issues"
[project.scripts]
amazon-music-mcp = "amazon_music_mcp.server:main"
[tool.setuptools]
packages = ["amazon_music_mcp"]
[tool.black]
line-length = 100
target-version = ['py310']
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true