The "Python Distribute" guide tells me to include doc/txt
files and .py
files are excluded in MANIFEST.in
file
The sourcedist documentation tells me only sdist uses MANIFEST.in
and only includes file you specify and to include .py
files. It also tells me to use: python setup.py sdist --manifest-only
to generate a MANIFEST
, but python tells me this doesn't exist
I appreciate these are from different versions of python and the distribution system is in a
complete mess, but assuming I am using python 3 and setuptools
(the new one that includes distribute but now called setuptools, not the old setuptools that was deprecated for distribute tools only to be brought back into distribute and distribute renamed to setuptools.....)
and I'm following the 'standard' folder structure and setup.py
file,
- Do I need a
MANIFEST.in
? - What should be in it ?
- When will all these different package systems and methods be made into one single simple process ?