[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "sound-recordings-mcp"
version = "0.1.0"
description = "MCP server for sound recording, fingerprint, and collection data access"
requires-python = ">=3.9"
authors = [
    {name = "sound-recordings", email = "yostapyuk@sonymusic-pde.com"}
]

dependencies = [
    "mcp[cli]>=1.27.2",
    "neo4j>=5.17.0",
    "snowflake-connector-python>=4.6.0",
    "mysql-connector-python>=8.2.0",
    "boto3>=1.34.0",
    "python-dotenv>=1.0.0",
    "pydantic>=2.13.4",
    "starlette>=1.3.1",
    "uvicorn>=0.49.0",
]

[project.optional-dependencies]
dev = [
    "pytest>=7.0.0",
    "pytest-asyncio>=0.21.0",
    "black>=23.0.0",
    "flake8>=6.0.0",
    "mypy>=1.0.0",
]

[tool.black]
line-length = 100
target-version = ['py39']

[tool.mypy]
python_version = "3.13"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false

[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
