-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
80 lines (68 loc) · 2.32 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 = "LinkChecker-GUI"
dynamic = ["version"]
description = "GUI for LinkChecker"
readme = "README.md"
authors = [{name = "LinkChecker Authors"}]
maintainers = [{name = "LinkChecker Authors"}]
classifiers = [
"Topic :: Internet :: WWW/HTTP :: Site Management :: Link Checking",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.9"
dependencies = [
"linkchecker >= 10.1",
"PyQt6",
"PyQt6-QScintilla",
]
[build-system]
requires = [
"hatchling >= 1.8.0",
"hatch-vcs",
"setuptools-scm >= 7.1.0",
"markdown2",
]
build-backend = "hatchling.build"
[project.urls]
Homepage = "https://github.com/linkchecker/linkchecker-gui"
[project.gui-scripts]
linkchecker-gui = "linkcheck_gui.__main__:main"
[tool.hatch.build]
artifacts = [
"linkcheck_gui/_release.py",
"linkcheck_gui/data/",
]
exclude = [
".github",
"Makefile",
"linkcheck_gui/rc/",
"linkcheck_gui/ui/",
]
[tool.hatch.build.hooks.custom]
path = "tools/hatch_build.py"
[tool.hatch.build.targets.sdist]
strict-naming = false
[tool.hatch.build.targets.wheel]
only-include = ["linkcheck_gui"]
strict-naming = false
[tool.hatch.build.targets.wheel.shared-data]
"doc/en/linkchecker-gui.1" = "share/man/man1/linkchecker-gui.1"
"doc/de/linkchecker-gui.1" = "share/man/de/man1/linkchecker-gui.1"
"doc/linkchecker-gui.desktop" = "share/applications/linkchecker-gui.desktop"
"doc/html/logo/16x16/linkchecker-gui.png" = "share/icons/hicolor/16x16/apps/linkchecker-gui.png"
"doc/html/logo/32x32/linkchecker-gui.png" = "share/icons/hicolor/32x32/apps/linkchecker-gui.png"
"doc/html/logo/48x48/linkchecker-gui.png" = "share/icons/hicolor/48x48/apps/linkchecker-gui.png"
"doc/html/logo/64x64/linkchecker-gui.png" = "share/icons/hicolor/64x64/apps/linkchecker-gui.png"
"doc/html/logo/128x128/linkchecker-gui.png" = "share/icons/hicolor/128x128/apps/linkchecker-gui.png"
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
local_scheme = "node-and-timestamp"
version_scheme = "post-release"