Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include .json extension in MANIFEST.in.
Not doing so causes nothing in the data directory to be included in the distribution.
- Loading branch information
3b7be05
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does it work though? It seems the packages published on pypi.org still don't have the JSON files included.
Maybe it should be
recursive-include data data/*.json
? Orrecursive-include data **/*.json
?If you don't worry about potential additional files in the
data
directory in the future, I think you could usegraft data
instead: https://packaging.python.org/guides/using-manifest-in/#manifest-in-commandsEDIT: my bad, the files are included, the issue just comes from #2309