[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "autocad-mcp"
version = "1.0.0"
description = "MCP Server for AutoCAD - Control CAD software via Claude Desktop"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "AutoCAD MCP Team" }
]
keywords = ["mcp", "autocad", "cad", "claude", "ai"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Computer Aided Design",
]
dependencies = [
"mcp>=1.0.0",
"pywin32>=306",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"mypy>=1.0.0",
"ruff>=0.1.0",
]
[project.scripts]
autocad-mcp = "autocad_mcp.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/autocad_mcp"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
"/LICENSE",
]
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "C4", "SIM"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_configs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]