mirror of https://github.com/mahmoud/boltons.git
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:
parent
b8103e6307
commit
1408e27ac5
|
@ -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 *
|
||||
|
|
Loading…
Reference in New Issue