[project]
name = "qt-mcp"
version = "0.1.0"
description = "MCP Server for Qt/PySide6 Desktop Application Inspection"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT OR Apache-2.0" }
authors = [
{ name = "qt-mcp contributors" },
]
keywords = ["mcp", "qt", "pyside6", "pyqt6", "desktop-automation"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Testing",
]
dependencies = [
"mcp>=1.0.0",
]
license-files = ["LICENSE-MIT", "LICENSE-APACHE"]
[project.urls]
Homepage = "https://github.com/0xCarbon/qt-mcp"
Repository = "https://github.com/0xCarbon/qt-mcp"
Issues = "https://github.com/0xCarbon/qt-mcp/issues"
Changelog = "https://github.com/0xCarbon/qt-mcp/blob/main/CHANGELOG.md"
[project.optional-dependencies]
probe = ["PySide6>=6.6.0"]
probe-pyside6 = ["PySide6>=6.6.0"]
probe-pyqt6 = ["PyQt6>=6.6.0"]
dev = [
"PySide6>=6.6.0",
"pytest>=8.0",
"ruff>=0.4",
"pip-audit>=2.9.0",
]
[project.scripts]
qt-mcp = "qt_mcp.server.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/qt_mcp"]
[tool.hatch.build.targets.wheel.force-include]
"src/qt_mcp/_qt_mcp_probe.pth" = "qt_mcp_probe.pth"
[tool.ruff]
line-length = 100
src = ["src"]
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.pytest.ini_options]
testpaths = ["tests"]