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:
Chris Mayo 2022-09-05 19:24:01 +01:00
parent 47d1015e00
commit 1975613b44
5 changed files with 6 additions and 100 deletions

View file

@ -121,7 +121,6 @@ jobs:
matrix:
toxenv:
- flake8
- check-manifest
- check-python-versions
- yamllint

View file

@ -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

View file

@ -47,6 +47,12 @@ artifacts = [
"linkcheck/_release.py",
"linkcheck/data/locale",
]
exclude = [
".github",
".gitattributes",
".gitignore",
"windows",
]
[tool.hatch.build.targets.sdist]
strict-naming = false

View file

@ -1,8 +1,3 @@
[check-manifest]
ignore =
*.rej
_release_date
[flake8]
filename =
*.py

View file

@ -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