marki-docx/pyproject.toml

70 lines
1.4 KiB
TOML
Raw Normal View History

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "markidocx"
version = "0.1.0"
description = "Markdown ↔ DOCX round-trip editing system"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"python-docx>=1.1.0",
"pyyaml>=6.0",
"typer>=0.12",
"rich>=13.0",
"mistune>=3.0",
"fastapi>=0.110",
"uvicorn[standard]>=0.29",
"mcp>=1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"ruff>=0.4",
"mypy>=1.10",
"types-PyYAML>=6.0",
"httpx>=0.27",
]
diagram-mermaid = ["nodeenv>=1.8"]
diagram-graphviz = ["graphviz>=0.20"]
diagram-plantuml = []
[project.urls]
Homepage = "https://github.com/tegwick/marki-docx"
Source = "https://github.com/tegwick/marki-docx"
Tracker = "https://github.com/tegwick/marki-docx/issues"
[project.scripts]
markidocx = "markidocx.cli:app"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
markidocx = ["templates/*.docx"]
[tool.setuptools]
license-files = ["LICENSE"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.11"
strict = false
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v"