You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The tarball uploaded to PyPI via the setup.py sdist command is missing some of the content in the repo because there's no MANIFEST.in file. This content includes the docs and examples subfolders, the LICENSE and Changelog files and the requirement-*.txt files.
Here's the MANIFEST.in file that you can add to include them:
include *.txt Changelog LICENSE Makefile
include docs/conf.py
recursive-include docs *.rst
graft examples
This will make packager's life much easier as the tarball will contain all we need.
The text was updated successfully, but these errors were encountered:
The tarball uploaded to PyPI via the setup.py sdist command is missing some of the content in the repo because there's no
MANIFEST.in
file. This content includes thedocs
andexamples
subfolders, theLICENSE
andChangelog
files and therequirement-*.txt
files.Here's the
MANIFEST.in
file that you can add to include them:This will make packager's life much easier as the tarball will contain all we need.
The text was updated successfully, but these errors were encountered: