[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "quredec-mcp" version = "0.1.1" description = "MCP server for QuReDec — structured decision briefs with citations from inside Claude Code / Claude Desktop / Cursor." readme = "README.md" requires-python = ">=3.11" license = { text = "MIT" } authors = [ { name = "Advanced Binary Operations LLC", email = "support@advancedbinaryoperations.com" } ] keywords = ["mcp", "claude", "anthropic", "decision", "brief", "research"] classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", ] dependencies = [ "mcp>=1.0.0", "httpx>=0.27.0", "pydantic>=2.5.0", ] [project.optional-dependencies] dev = [ "pytest>=8.0.0", "pytest-asyncio>=0.23.0", "respx>=0.21.0", "ruff>=0.4.0", ] [project.scripts] quredec-mcp = "quredec_mcp.server:main" [project.urls] Homepage = "https://quredec.com" Repository = "https://github.com/Advanced-Binary-Operations/QuReDec_MCP" Issues = "https://github.com/Advanced-Binary-Operations/QuReDec_MCP/issues" [tool.hatch.build.targets.wheel] packages = ["src/quredec_mcp"] [tool.ruff] line-length = 100 target-version = "py311" [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"]