init mdlink

This commit is contained in:
2026-04-10 15:24:42 +02:00
commit f4fa4fc35e
12 changed files with 697 additions and 0 deletions

21
pyproject.toml Normal file
View File

@@ -0,0 +1,21 @@
[project]
name = "mdlink"
version = "0.1.0"
description = "CLI tool to validate Markdown links and optionally rewrite redirects."
readme = "README.md"
authors = [
{name = "drg", email = "gammlaa@chaospott.de"}
]
license = "MIT"
requires-python = ">=3.9"
dependencies = [
"httpx>=0.27.0",
"markdown-it-py>=3.0.0",
"rich>=13.7.0"
]
[project.scripts]
mdlink = "mdlink.cli:main"
[tool.setuptools.packages.find]
include = ["mdlink*"]