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
MANIFEST.in controls what files will end up in the source tar.gz distribution on python setup.py sdist. Right now MANIFEST.in is a static file edited manually which doesn't take into account about whether files are added, removed or moved via GIT. It also doesn't take into account files which may be in the working dir but are not under revision control. As such it'd be better to have a dynamic make generate-manifest command which uses git ls-files to get a list of all files under revision control and writes them in MANIFEST.in.
This way we'll be certain the tar.gz distribution has no extraneous or missing files.
The text was updated successfully, but these errors were encountered:
MANIFEST.in controls what files will end up in the source tar.gz distribution on
python setup.py sdist
. Right now MANIFEST.in is a static file edited manually which doesn't take into account about whether files are added, removed or moved via GIT. It also doesn't take into account files which may be in the working dir but are not under revision control. As such it'd be better to have a dynamicmake generate-manifest
command which usesgit ls-files
to get a list of all files under revision control and writes them in MANIFEST.in.This way we'll be certain the tar.gz distribution has no extraneous or missing files.
The text was updated successfully, but these errors were encountered: