I\'m trying to put a Python project into a tarball using setuptools. The problem is that setuptools doesn\'t appear to like the way that the source tree was originally setu
We use the following convention to exclude 'tests' from packages.
setup( name="project", packages=find_packages(exclude=("tests",)), include_package_data=True, test_suite='nose.collector', )
We also use MANIFEST.in to better control what include_package_data=True does.
include_package_data=True