pyproject.tomlโข4.09 kB
[project]
name = "eveng-mcp-server"
version = "1.0.0"
description = "Production-ready Model Context Protocol (MCP) server for EVE-NG network emulation platform integration"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{name = "Mohammed Imran", email = "Postme.imran@gmail.com"}
]
keywords = ["mcp", "eve-ng", "network", "emulation", "automation"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Networking",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Environment :: Console",
"Environment :: Web Environment",
]
dependencies = [
"mcp>=1.0.0",
"eve-ng>=0.2.0",
"pydantic>=2.0.0",
"httpx>=0.25.0",
"python-dotenv>=1.0.0",
"structlog>=23.0.0",
"typer>=0.9.0",
"rich>=10.16.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"pytest-html>=3.2.0",
"pytest-xdist>=3.3.0",
"pytest-mock>=3.11.0",
"pytest-benchmark>=4.0.0",
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0",
"mypy>=1.5.0",
"pre-commit>=3.0.0",
"respx>=0.20.0",
"factory-boy>=3.3.0",
"faker>=19.0.0",
"freezegun>=1.2.0",
]
test = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"pytest-html>=3.2.0",
"pytest-mock>=3.11.0",
"respx>=0.20.0",
"httpx>=0.24.0",
"aioresponses>=0.7.4",
]
docs = [
"mkdocs>=1.5.0",
"mkdocs-material>=9.0.0",
"mkdocs-mermaid2-plugin>=1.1.0",
"mkdocstrings[python]>=0.23.0",
]
monitoring = [
"prometheus-client>=0.17.0",
"opentelemetry-api>=1.20.0",
"opentelemetry-sdk>=1.20.0",
"opentelemetry-instrumentation-httpx>=0.41b0",
]
[project.scripts]
eveng-mcp-server = "eveng_mcp_server.cli:main"
[project.urls]
Homepage = "https://github.com/moimran/eveng-mcp-server"
Repository = "https://github.com/moimran/eveng-mcp-server"
Documentation = "https://github.com/moimran/eveng-mcp-server#readme"
Issues = "https://github.com/moimran/eveng-mcp-server/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.black]
line-length = 88
target-version = ['py311']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 88
known_first_party = ["eveng_mcp_server"]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true
strict_equality = true
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra -q --strict-markers --strict-config"
testpaths = ["tests"]
asyncio_mode = "auto"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: marks tests as integration tests",
"unit: marks tests as unit tests",
]
[tool.coverage.run]
source = ["eveng_mcp_server"]
omit = [
"*/tests/*",
"*/test_*",
"*/__pycache__/*",
]
[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",
]