mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-17 02:51:07 +00:00
Remove MANIFEST.in
All files stored in Git are included in the sdist, unless excluded with tool.hatch.build.exclude. Build artifacts listed in tool.hatch.build.artifacts are also included.
This commit is contained in:
parent
47d1015e00
commit
1975613b44
5 changed files with 6 additions and 100 deletions
1
.github/workflows/build.yml
vendored
1
.github/workflows/build.yml
vendored
|
|
@ -121,7 +121,6 @@ jobs:
|
|||
matrix:
|
||||
toxenv:
|
||||
- flake8
|
||||
- check-manifest
|
||||
- check-python-versions
|
||||
- yamllint
|
||||
|
||||
|
|
|
|||
89
MANIFEST.in
89
MANIFEST.in
|
|
@ -1,89 +0,0 @@
|
|||
include *.ini
|
||||
include *.md
|
||||
include *.rst
|
||||
include *.txt
|
||||
include COPYING
|
||||
include Dockerfile
|
||||
include MANIFEST.in
|
||||
include Makefile
|
||||
include install-rpm.sh
|
||||
include pyoxidizer.bzl
|
||||
include .project
|
||||
include .pydevproject
|
||||
include .yamllint
|
||||
include linkcheck/data/linkcheckerrc
|
||||
|
||||
recursive-include cgi-bin \
|
||||
*.css \
|
||||
*.de \
|
||||
*.en \
|
||||
*.html \
|
||||
*.ico \
|
||||
*.js \
|
||||
README
|
||||
recursive-include config \
|
||||
*.sql \
|
||||
linkchecker-completion \
|
||||
linkchecker.apache2.conf
|
||||
recursive-include doc \
|
||||
*.1 \
|
||||
*.5 \
|
||||
*.bat \
|
||||
*.css \
|
||||
*.example \
|
||||
*.html \
|
||||
*.ico \
|
||||
*.jpg \
|
||||
*.md \
|
||||
*.png \
|
||||
*.po \
|
||||
*.pot \
|
||||
*.py \
|
||||
*.rst \
|
||||
*.sh \
|
||||
*.txt \
|
||||
*.yml \
|
||||
Makefile \
|
||||
linkcheckerrc_*
|
||||
recursive-include linkcheck \
|
||||
*.mo
|
||||
recursive-include po \
|
||||
*.po \
|
||||
*.pot \
|
||||
Makefile
|
||||
recursive-include \
|
||||
scripts \
|
||||
*.sh \
|
||||
*.py
|
||||
recursive-include tests \
|
||||
*.adr \
|
||||
*.asc \
|
||||
*.bin \
|
||||
*.css \
|
||||
*.doc \
|
||||
*.html \
|
||||
*.ico \
|
||||
*.ini \
|
||||
*.markdown \
|
||||
*.pdf \
|
||||
*.php \
|
||||
*.plist \
|
||||
*.py \
|
||||
*.result \
|
||||
*.sqlite \
|
||||
*.swf \
|
||||
*.txt \
|
||||
*.wml \
|
||||
*.xhtml \
|
||||
*.xml \
|
||||
*.zip \
|
||||
Bookmarks
|
||||
recursive-include tools \
|
||||
*.py
|
||||
recursive-include windows \
|
||||
*.bat \
|
||||
*.cer \
|
||||
*.pfx \
|
||||
*.pvk
|
||||
|
||||
prune .github
|
||||
|
|
@ -47,6 +47,12 @@ artifacts = [
|
|||
"linkcheck/_release.py",
|
||||
"linkcheck/data/locale",
|
||||
]
|
||||
exclude = [
|
||||
".github",
|
||||
".gitattributes",
|
||||
".gitignore",
|
||||
"windows",
|
||||
]
|
||||
|
||||
[tool.hatch.build.targets.sdist]
|
||||
strict-naming = false
|
||||
|
|
|
|||
|
|
@ -1,8 +1,3 @@
|
|||
[check-manifest]
|
||||
ignore =
|
||||
*.rej
|
||||
_release_date
|
||||
|
||||
[flake8]
|
||||
filename =
|
||||
*.py
|
||||
|
|
|
|||
5
tox.ini
5
tox.ini
|
|
@ -27,11 +27,6 @@ deps = flake8
|
|||
skip_install = true
|
||||
commands = flake8 {posargs}
|
||||
|
||||
[testenv:check-manifest]
|
||||
deps = check-manifest
|
||||
skip_install = true
|
||||
commands = check-manifest {posargs}
|
||||
|
||||
[testenv:check-python-versions]
|
||||
deps = check-python-versions
|
||||
skip_install = true
|
||||
|
|
|
|||
Loading…
Reference in a new issue