[build-system] requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [project] name = "contract-validator-mcp" version = "1.0.0" description = "MCP Server for cross-plugin compatibility validation and agent verification" readme = "README.md" license = {text = "MIT"} requires-python = ">=3.10" authors = [ {name = "Leo Miranda"} ] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", ] dependencies = [ "mcp>=0.9.0", "pydantic>=2.5.0", ] [project.optional-dependencies] dev = [ "pytest>=7.4.3", "pytest-asyncio>=0.23.0", ] [tool.setuptools.packages.find] where = ["."] include = ["mcp_server*"] [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"]