[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bugbounty-hunter-mcp"
version = "1.0.0"
description = "Professional Bug Bounty Hunter MCP Server with 100+ Security Tools"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Bug Bounty Team", email = "security@bugbounty.com"}
]
keywords = [
"bug-bounty", "security", "mcp", "pentesting", "web-security",
"reconnaissance", "vulnerability-scanning", "fuzzing", "automation"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
]
dependencies = [
"fastmcp>=2.12.0",
"httpx>=0.24.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"requests>=2.31.0",
"aiohttp>=3.9.0",
"beautifulsoup4>=4.12.0",
"dnspython>=2.4.0",
"python-whois>=0.8.0",
"PyJWT>=2.8.0",
"validators>=0.22.0",
"tqdm>=4.66.0",
"colorama>=0.4.6",
"tabulate>=0.9.0",
"jinja2>=3.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
"isort>=5.12.0",
]
[project.urls]
Homepage = "https://github.com/yourusername/bugbounty-hunter-mcp"
Documentation = "https://github.com/yourusername/bugbounty-hunter-mcp/wiki"
Repository = "https://github.com/yourusername/bugbounty-hunter-mcp"
Issues = "https://github.com/yourusername/bugbounty-hunter-mcp/issues"
[project.scripts]
bugbounty-mcp = "bug_bounty_mcp:main"
bb-hunt = "bug_bounty_mcp:main"
[tool.black]
line-length = 100
target-version = ['py310', 'py311', 'py312']
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --cov=src --cov-report=html --cov-report=term"