pyproject.toml•1.86 kB
[project]
name = "meraki-mcp"
version = "0.1.0"
description = "Meraki MCP Server for Cisco Meraki Dashboard API"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastmcp>=2.10.6",
"mcp[cli]>=1.12.1",
"meraki>=2.0.3",
"python-dotenv>=1.0.1",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"httpx>=0.28.1",
"beautifulsoup4>=4.13.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ipdb>=0.13.13",
"ipython>=8.31.0",
"matplotlib>=3.10.0",
"mypy>=1.14.0",
"pre-commit>=4.0.1",
"pytest>=8.3.4",
"pytest-cov>=5.0.0",
"ruff>=0.8.4",
]
[tool.ruff]
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
]
line-length = 88
indent-width = 4
target-version = "py312"
[tool.ruff.lint]
select = ["F", "I", "E", "W", "ARG", "T201"]
fixable = ["I"]
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["E712", "ARG001"]
"research/*.py" = ["T201", "ARG001"]
[tool.ruff.format]
# Like Black, use double quotes for strings.
quote-style = "double"
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"
[tool.mypy]
ignore_missing_imports = true
show_error_codes = true
[[tool.mypy.overrides]]
module = ["torch.*"]
follow_imports = "skip"
follow_imports_for_stubs = true