2026-07-22 01:29:32 -04:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling>=1.27,<2"]
|
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "docforge"
|
2026-07-24 16:09:56 -04:00
|
|
|
version = "0.7.1"
|
2026-07-22 01:29:32 -04:00
|
|
|
description = "Project-scoped documentation indexing and context service"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">=3.12"
|
|
|
|
|
license = { text = "MIT" }
|
|
|
|
|
authors = [{ name = "Worldforge contributors" }]
|
2026-07-22 03:32:05 -04:00
|
|
|
dependencies = ["markdown-it-py>=4.2,<5", "mcp>=1.28,<2"]
|
2026-07-22 01:29:32 -04:00
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
docforge = "docforge.cli:main"
|
|
|
|
|
docforge-mcp = "docforge.mcp_server:main"
|
|
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
|
packages = ["src/docforge"]
|
|
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
|
line-length = 100
|
|
|
|
|
target-version = "py312"
|
|
|
|
|
|
|
|
|
|
[tool.ruff.lint]
|
|
|
|
|
select = ["E", "F", "I", "UP", "B", "SIM"]
|
|
|
|
|
|
|
|
|
|
[tool.pyright]
|
|
|
|
|
pythonVersion = "3.12"
|
|
|
|
|
typeCheckingMode = "strict"
|
|
|
|
|
include = ["src"]
|