pyproject.tomlā¢1.25 kB
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "wikijs-mcp-server"
version = "0.1.0"
description = "MCP server for Wiki.js integration"
authors = []
dependencies = [
"mcp>=1.0.0",
"httpx>=0.25.0",
"python-dotenv>=1.0.0",
"pydantic>=2.0.0",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"pytest-mock>=3.10.0",
"pytest-xdist>=3.0.0",
"black>=23.0.0",
"mypy>=1.0.0",
"types-requests>=2.0.0",
"bandit[toml]>=1.7.0",
"safety>=2.0.0",
]
[project.scripts]
wikijs-mcp-server = "wikijs_mcp.server:main"
wikijs-env = "wikijs_mcp.cli:main"
[tool.black]
line-length = 88
target-version = ['py310']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
ignore_missing_imports = true
no_strict_optional = true
[tool.bandit]
exclude_dirs = ["tests"]
skips = ["B101", "B601"]