[go: up one dir, main page]

File: pyproject.toml

package info (click to toggle)
linkchecker 10.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,076 kB
  • sloc: python: 13,323; makefile: 135; sh: 71; xml: 36; sql: 20; javascript: 19; php: 2
file content (103 lines) | stat: -rw-r--r-- 3,538 bytes parent folder | download
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[project]
name = "LinkChecker"
dynamic = ["version"]
description = "check links in web documents or full websites"
readme = "README.rst"
keywords = ["link", "url", "site", "checking", "crawling", "verification", "validation"]
authors = [{name = "LinkChecker Authors"}]
maintainers = [{name = "LinkChecker Authors"}]
classifiers = [
    "Topic :: Internet :: WWW/HTTP :: Site Management :: Link Checking",
    "Development Status :: 5 - Production/Stable",
    "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
    "Programming Language :: Python",
    "Programming Language :: Python :: 3.7",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
]

requires-python = ">=3.7"

dependencies = [
    "requests >= 2.20",
    "dnspython >= 2.0",
    "beautifulsoup4 >= 4.8.1",
]

[build-system]
requires = [
    "hatchling>=1.8.0",
    "hatch-vcs",
]
build-backend = "hatchling.build"

[project.urls]
Homepage = "https://linkchecker.github.io/linkchecker/"
"Bug Tracker" = "https://github.com/linkchecker/linkchecker/issues"
Repository = "https://github.com/linkchecker/linkchecker"
Changelog = "https://github.com/linkchecker/linkchecker/blob/master/doc/changelog.txt"

[project.scripts]
linkchecker = "linkcheck.command.linkchecker:linkchecker"

[tool.hatch.build]
artifacts = [
    "linkcheck/_release.py",
    "linkcheck/data/locale",
]
exclude = [
    ".github",
    ".gitattributes",
]

[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"]
strict-naming = false

[tool.hatch.build.targets.wheel.shared-data]
"doc/man/en/linkchecker.1" = "share/man/man1/linkchecker.1"
"doc/man/en/linkcheckerrc.5" = "share/man/man5/linkcheckerrc.5"
"doc/man/de/linkchecker.1" = "share/man/de/man1/linkchecker.1"
"doc/man/de/linkcheckerrc.5" = "share/man/de/man5/linkcheckerrc.5"
"cgi-bin/lconline/leer.html.en" = "share/linkchecker/examples/cgi-bin/lconline/leer.html.en"
"cgi-bin/lconline/leer.html.de" = "share/linkchecker/examples/cgi-bin/lconline/leer.html.de"
"cgi-bin/lconline/index.html" = "share/linkchecker/examples/cgi-bin/lconline/index.html"
"cgi-bin/lconline/lc_cgi.html.en" = "share/linkchecker/examples/cgi-bin/lconline/lc_cgi.html.en"
"cgi-bin/lconline/lc_cgi.html.de" = "share/linkchecker/examples/cgi-bin/lconline/lc_cgi.html.de"
"cgi-bin/lconline/check.js" = "share/linkchecker/examples/cgi-bin/lconline/check.js"
"cgi-bin/lc.wsgi" = "share/linkchecker/examples/cgi-bin/lc.wsgi"
"config/create.sql" = "share/linkchecker/examples/config/create.sql"
"config/linkchecker.apache2.conf" = "share/linkchecker/examples/config/linkchecker.apache2.conf"
"config/linkchecker-completion" = "share/linkchecker/examples/config/linkchecker-completion"
"doc/examples/check_failures.sh" = "share/linkchecker/examples/check_failures.sh"
"doc/examples/check_for_x_errors.sh" = "share/linkchecker/examples/check_for_x_errors.sh"
"doc/examples/check_urls.sh" = "share/linkchecker/examples/check_urls.sh"

[tool.hatch.version]
source = "vcs"

[tool.hatch.version.raw-options]
local_scheme = "node-and-timestamp"
version_scheme = "post-release"

[tool.hatch.envs.test]
dependencies = [
    "miniboa",
    "parameterized",
    "pdfminer.six",
    "pyftpdlib",
    "pyopenssl",
    "pytest",
    "pytest-xdist",
]

[tool.hatch.envs.test.scripts]
tests = "pytest -vra tests"