1
0
Fork 0
Code Issues Pull requests Projects Releases 2 Packages Wiki Activity Actions Pages
DocForge2/pyproject.toml

32 lines
716 B
TOML

[build-system]
requires = ["hatchling>=1.27,<2"]
build-backend = "hatchling.build"
[project]
name = "docforge"
version = "0.1.0"
description = "Project-scoped documentation indexing and context service"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
authors = [{ name = "Worldforge contributors" }]
dependencies = ["mcp>=1.28,<2"]
[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"]