[project]
name = "mcp-server-make"
version = "0.2.0"
description = "A Model Context Protocol server providing access to make functionality"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "Joshua M. Dotson", email = "contact@jmdots.com" }]
maintainers = [{ name = "Joshua M. Dotson", email = "contact@jmdots.com" }]
keywords = ["make", "mcp", "llm", "automation"]
license = { text = "MIT" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"mcp>=1.0.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pyright>=1.1.389",
"ruff>=0.7.3",
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.1.0",
"mypy>=1.8.0",
"types-setuptools>=69.0.0"
]
[project.scripts]
mcp-server-make = "mcp_server_make:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = false
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true
strict_equality = true
[tool.pytest.ini_options]
asyncio_mode = "strict"
testpaths = ["tests"]
asyncio_default_fixture_loop_scope = "function"