Adding a temporary file so that I can get the list of packages when Nick Hall has made his changes. It can be used up until or if Distutils deprecates it.

svn: r19823
This commit is contained in:
Rob G. Healey 2012-06-11 04:48:16 +00:00
parent 717e40170f
commit a39e9e057a

11
.get_packages_list.py Normal file
View File

@ -0,0 +1,11 @@
import os
from distutils2.util import find_packages
exclude_list = ('src.gui.glade', 'src.guiQML', 'src.guiQML.views', 'src.images', 'src.plugins',
'src.webapp', 'src.webapp.grampsdb', 'src.webapp.grampsdb.templatetags', 'src.webapp.grampsdb.view', )
packages = sorted(find_packages(exclude=exclude_list))
for package in packages:
print(" '%s'," % package)