Specifying Additional Files With A Manifest
We'll cover the following...
By default, Distutils will include the following files in your release package:
README.txtsetup.py- The
.pyfiles needed by the multi-file modules listed in thepackagesparameter - The individual
.pyfiles listed in thepy_modulesparameter
That will cover all the files in the httplib2 project. But for the chardet project, we also want to include the COPYING.txt license file and ...
Ask