[project]
name = "mcp-cybersecurity-server"
version = "1.0.0"
description = "MCP Server para análisis de vulnerabilidades CVE"
requires-python = ">=3.11"
authors = [
{name = "José María Teba", email = "jmteba@example.com"}
]
readme = "README.md"
license = {text = "Academic Project"}
dependencies = [
"mcp>=1.0.0",
"httpx>=0.24.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0"
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"mypy>=1.5.0"
]
[build-system]
requires = ["setuptools>=68.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.black]
line-length = 100
target-version = ['py311']
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false