From a39e9e057ae0a2ae69b675b73e83336500a46b80 Mon Sep 17 00:00:00 2001 From: "Rob G. Healey" Date: Mon, 11 Jun 2012 04:48:16 +0000 Subject: [PATCH] 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 --- .get_packages_list.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .get_packages_list.py diff --git a/.get_packages_list.py b/.get_packages_list.py new file mode 100644 index 000000000..c90948eab --- /dev/null +++ b/.get_packages_list.py @@ -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)