-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
80 lines (70 loc) · 1.8 KB
/
pyproject.toml
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
75
76
77
78
79
80
[project]
name = "md_dead_link_check"
description = "This is a lightweight and fast tool to help you keep your Markdown files free of broken links."
readme = "README.md"
version = "1.0.1"
license = {text = "MIT"}
requires-python = ">=3.8"
dependencies = [
"toml>=0.7.0,<3.11.0",
"GitPython>=3.1.0,<3.2.0",
"aiohttp>=3.10.11,<3.12.0"
]
keywords = [
"markdown",
"link checker",
"dead link",
"dead link checker",
"broken link",
"broken link checker",
"link health",
"documentation maintenance",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Repository = "https://github.com/AlexanderDokuchaev/md-dead-link-check"
Issues = "https://github.com/AlexanderDokuchaev/md-dead-link-check/issues"
[project.optional-dependencies]
dev = [
"pytest==7.4.3",
"pre-commit==3.2.2"
]
lint = [
"black==24.2.0",
"isort==5.13.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
only-include = ["md_dead_link_check"]
[tool.hatch.build.targets.wheel]
packages = ["md_dead_link_check"]
[project.scripts]
md-dead-link-check = 'md_dead_link_check.__main__:main'
[tool.black]
line-length = 120
[tool.isort]
line_length = 120
force_single_line = true
profile = "black"
single_line_exclusions = "typing"
[tool.mypy]
follow_imports = "silent"
strict = true
explicit_package_bases = true
ignore_missing_imports = true
[tool.md_dead_link_check]
exclude_files = [
"tests/test_md_files/fail.md"
]