-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (65 loc) · 1.87 KB
/
pyproject.toml
File metadata and controls
74 lines (65 loc) · 1.87 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[project]
name = "dacli"
version = "0.4.36"
description = "Documentation Access CLI - Navigate and query large documentation projects"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.12"
authors = [
{ name = "Ralf D. Müller" }
]
keywords = ["documentation", "cli", "asciidoc", "markdown", "mcp", "llm"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"click>=8.3.1",
"cryptography>=46.0.5", # Security fix: CVE-2026-26007
"fastapi>=0.115.0",
"fastmcp>=2.14.0,<3",
"pathspec>=1.0.3",
"pydocket<0.17", # Pin to avoid breaking change in 0.17 (fastmcp compatibility)
"pyyaml>=6.0",
"uvicorn>=0.30.0",
]
[project.urls]
Homepage = "https://github.com/docToolchain/dacli"
Repository = "https://github.com/docToolchain/dacli"
Issues = "https://github.com/docToolchain/dacli/issues"
[project.optional-dependencies]
dev = [
"asciidoc-linter @ git+https://github.com/docToolchain/asciidoc-linter.git",
"hypothesis>=6.0.0",
"pre-commit>=4.0.0",
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=5.0.0",
"pytest-html>=4.0.0",
"ruff>=0.8.0",
]
[project.scripts]
dacli = "dacli.cli:cli"
dacli-mcp = "dacli.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/dacli"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.ruff]
target-version = "py312"
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]