Merge pull request #1186 from RonnyPfannschmidt/fix-manifest
fix #1185 - ensure MANIFEST.in exactly matches what should go to a sdist
This commit is contained in:
commit
efb5332023
|
@ -20,6 +20,7 @@
|
||||||
|
|
||||||
- fix the summary printed when no tests did run.
|
- fix the summary printed when no tests did run.
|
||||||
Thanks Florian Bruhin for the PR.
|
Thanks Florian Bruhin for the PR.
|
||||||
|
- fix #1185 - ensure MANIFEST.in exactly matches what should go to a sdist
|
||||||
|
|
||||||
- a number of documentation modernizations wrt good practices.
|
- a number of documentation modernizations wrt good practices.
|
||||||
Thanks Bruno Oliveira for the PR.
|
Thanks Bruno Oliveira for the PR.
|
||||||
|
|
35
MANIFEST.in
35
MANIFEST.in
|
@ -1,7 +1,34 @@
|
||||||
include CHANGELOG
|
include CHANGELOG
|
||||||
include README.rst
|
|
||||||
include setup.py
|
|
||||||
include tox.ini
|
|
||||||
include LICENSE
|
include LICENSE
|
||||||
graft doc
|
include AUTHORS
|
||||||
|
|
||||||
|
include README.rst
|
||||||
|
include CONTRIBUTING.rst
|
||||||
|
|
||||||
|
include tox.ini
|
||||||
|
include setup.py
|
||||||
|
|
||||||
|
include .coveragerc
|
||||||
|
|
||||||
|
include plugin-test.sh
|
||||||
|
include requirements-docs.txt
|
||||||
|
include runtox.py
|
||||||
|
|
||||||
|
recursive-include bench *.py
|
||||||
|
recursive-include extra *.py
|
||||||
|
|
||||||
graft testing
|
graft testing
|
||||||
|
graft doc
|
||||||
|
|
||||||
|
exclude _pytest/impl
|
||||||
|
|
||||||
|
graft _pytest/vendored_packages
|
||||||
|
|
||||||
|
recursive-exclude * *.pyc *.pyo
|
||||||
|
|
||||||
|
exclude appveyor/install.ps1
|
||||||
|
exclude appveyor.yml
|
||||||
|
exclude appveyor
|
||||||
|
|
||||||
|
exclude ISSUES.txt
|
||||||
|
exclude HOWTORELEASE.rst
|
||||||
|
|
Loading…
Reference in New Issue