[project] name = "mcdosbox-x" version = "2025.01.28" description = "MCP server for debugging DOS binaries in DOSBox-X via GDB protocol" readme = "README.md" requires-python = ">=3.11" authors = [{name = "Ryan Malloy", email = "ryan@supported.systems"}] license = {text = "MIT"} keywords = ["mcp", "dosbox", "gdb", "reverse-engineering", "dos", "debugging"] classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Topic :: Software Development :: Debuggers", "Topic :: System :: Emulators", ] dependencies = [ "fastmcp>=2.0.0", "pillow>=10.0.0", ] [project.optional-dependencies] dev = [ "pytest>=8.0.0", "pytest-asyncio>=0.24.0", "ruff>=0.8.0", ] [project.scripts] mcdosbox-x = "mcdosbox_x.server:main" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["src/mcdosbox_x"] [tool.hatch.build.targets.sdist] include = ["src/mcdosbox_x", "src/mcdosbox_x/fonts"] [tool.ruff] line-length = 100 target-version = "py311" [tool.ruff.lint] select = ["E", "F", "I", "N", "W", "UP", "B", "C4", "SIM"] ignore = ["E501"] # Line length handled separately [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"]