I'm trying to use Distribute for my project's setup.py
. I want it to include all the files in the package folder, which are text and image files, but not .pyc files of course. I read that the files should either be tracked by CVS and SVN, or there should be a MAINFEST.in
.
So:
I use neither CVS nor SVN, I use git. I know that it's possible to write a plugin for git, and perhaps someone has, but I'm not going to use some plugin that I don't know if it will be maintained and supported. Also, git is tracking more than the source folder, the repo includes other files which shouldn't be packed in the distribution.
I thought that one of the perks of Distribute is not having to deal with a
MANIFEST.in
file. Do I really have to? If so, where do I see a guide? I've never written aMANIFEST.in
.
Is there any nicer solution?