Fix including docs and tests in sdist (#353)

Fix the `recursive-include` statements in `MANIFEST.in` to actually
include full documentation and test tree.  The statements without
a list of globs were ineffective, and only `.py` files were included.
Effectively, docs were missing completely and tests missed required
data files (e.g. `json_test_data.txt`).
This commit is contained in:
Michał Górny 2023-11-01 07:47:22 +01:00 committed by GitHub
parent b8103e6307
commit 1408e27ac5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -4,5 +4,5 @@ include README.md
include TODO.rst
include pytest.ini
include tox.ini
recursive-include docs
recursive-include tests
recursive-include docs *
recursive-include tests *