-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 974 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (39 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[project]
name = "mcp-pandoc"
version = "0.11.1"
description = "MCP to interface with pandoc to convert files to different formats with enhanced features like Mermaid diagram conversion and defaults file support."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"mcp>=2,<3",
"jsonschema>=4.25.1",
"pyyaml>=6.0.2",
"pandoc>=2.4",
"pypandoc>=1.14",
"pandocfilters>=1.5.0",
"panflute>=2.3.1",
]
[[project.authors]]
name = "Vivek Vellaiyappan Surulimuthu"
email = "vivekvellaiyappans@gmail.com"
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest-asyncio>=1.0.0",
"pytest>=8.4.1",
"ruff>=0.12.11",
"yamllint>=1.37.1",
"pre-commit>=4.3.0",
]
[project.scripts]
mcp-pandoc = "mcp_pandoc:main"
[tool.ruff]
line-length = 120
exclude = ["tests/*"]
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "D", "N", "S"]
ignore = []
[tool.yamllint]
config-file = ".yamllint.yaml"