pyproject.toml•2.62 kB
[project]
name = "spotify-mcp"
version = "0.1.0"
description = "MCP spotify project"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"mcp[cli]>=1.12.0",
"python-dotenv>=1.0.1",
"spotipy>=2.25.0",
]
[[project.authors]]
name = "Varun Srivastava"
email = "varun.neal@berkeley.edu"
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"spotify-mcp",
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-mock>=3.12.0",
"pytest-env>=1.1.0",
"pytest-cov>=4.0.0",
"mypy>=1.8.0",
"types-requests>=2.31.0",
"ruff>=0.6.0",
"bandit>=1.7.0",
]
[tool.uv.sources]
spotify-mcp = { workspace = true }
[project.scripts]
spotify-mcp = "spotify_mcp:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"-v",
"--tb=short",
"--strict-markers",
]
asyncio_mode = "auto"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: marks tests as integration tests",
]
env = [
"SPOTIFY_CLIENT_ID=test_client_id",
"SPOTIFY_CLIENT_SECRET=test_client_secret",
"SPOTIFY_REDIRECT_URI=http://localhost:8888",
]
# Default environment variables for development
# These are used when no environment variables or .env file is present
[tool.spotify-mcp.env]
SPOTIFY_CLIENT_ID = "your_spotify_client_id_here"
SPOTIFY_CLIENT_SECRET = "your_spotify_client_secret_here"
SPOTIFY_REDIRECT_URI = "http://localhost:8888"
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true
strict_equality = true
show_error_codes = true
[[tool.mypy.overrides]]
module = [
"spotipy.*",
"dotenv.*",
]
ignore_missing_imports = true
[tool.ruff]
target-version = "py312"
line-length = 88
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = [
"E501", # line too long, handled by formatter
"B008", # do not perform function calls in argument defaults
"C901", # too complex
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"
[tool.bandit]
exclude_dirs = ["tests"]
skips = ["B101", "B601"]