pyproject.toml•2.9 kB
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "zap-custom-mcp"
version = "1.0.0"
description = "A powerful Model Context Protocol (MCP) Server that integrates OWASP ZAP with AI assistants"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Your Name", email = "your.email@example.com"},
]
maintainers = [
{name = "Your Name", email = "your.email@example.com"},
]
keywords = ["security", "zap", "mcp", "ai", "vulnerability", "scanning"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Security",
"Topic :: Software Development :: Testing",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
]
requires-python = ">=3.8"
dependencies = [
"requests>=2.31.0",
"urllib3>=2.0.0",
"aiohttp>=3.8.0",
"fastapi>=0.110.0",
"uvicorn[standard]>=0.29.0",
"pydantic>=1.10.0",
"pathlib2>=2.3.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"flake8>=6.0.0",
]
docker = [
"docker>=6.0.0",
]
[project.urls]
Homepage = "https://github.com/LisBerndt/zap-custom-mcp"
Documentation = "https://github.com/LisBerndt/zap-custom-mcp/wiki"
Repository = "https://github.com/LisBerndt/zap-custom-mcp.git"
Issues = "https://github.com/LisBerndt/zap-custom-mcp/issues"
Changelog = "https://github.com/LisBerndt/zap-custom-mcp/blob/main/CHANGELOG.md"
[project.scripts]
zap-custom-mcp = "zap_custom_mcp.http_server:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["zap_custom_mcp*"]
exclude = ["tests*", "docs*", "*.tests*", "*.tests.*", "tests.*"]
[tool.setuptools.package-data]
"*" = ["*.md", "*.txt", "*.yml", "*.yaml", "*.json"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"--strict-markers",
"--strict-config",
"--cov=.",
"--cov-report=term-missing",
"--cov-report=xml",
"--cov-report=html",
]
[tool.coverage.run]
source = ["."]
omit = [
"tests/*",
"venv/*",
".venv/*",
"*/venv/*",
"*/tests/*",
"*/test_*",
"setup.py",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if self.debug:",
"if settings.DEBUG",
"raise AssertionError",
"raise NotImplementedError",
"if 0:",
"if __name__ == .__main__.:",
"class .*\\bProtocol\\):",
"@(abc\\.)?abstractmethod",
]