Comment

Damien

MANIFEST.in just need to be in the same directory as setup.py, then you just need to set 'include_package_data' to true. From setuptools doc:

``include_package_data``
Accept all data files and directories matched by ``MANIFEST.in`` or found
in source control*.

You can use "exclude_package_data = {'some_dir': 'some_file'}" to exclude some files tracked by your vcs*.

*only supporting svn by default I think.