[project]
name = "bugbounty-mcp-server"
version = "0.1.0"
description = "MCP server for bug bounty hunting workflows"
authors = [{name = "Bug Bounty Team"}]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp>=0.1.0",
"pydantic>=2.0.0",
"aiohttp>=3.9.0",
"pyyaml>=6.0.0",
"sqlalchemy>=2.0.0",
"python-dotenv>=1.0.0",
"requests>=2.31.0",
"dnspython>=2.4.0",
"beautifulsoup4>=4.12.0",
"rich>=13.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"mypy>=1.0.0",
"ruff>=0.1.0",
]
[build-system]
requires = ["setuptools>=68.0.0", "wheel"]
build-backend = "setuptools.build_backend"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_configs = true