In my setup.py file which uses setuptools, I use packages = find_packages()
. This works fine, except that it includes unversioned .py
files that are stored in the package folders. I would like it to include only the .py files that I have checked into my Subversion repository. Is that possible and, if so, how?
In essence, I would like the inclusion of .py
files in the packages to work more like the inclusion of data files enabled with include_package_data = True
, where only data files that are also checked into Subversion get included.