Otherwise test/ and others may also be bundled, which will clutter
your installation with useless cruft.
doclines = __doc__.split("\n")
-def find_packages():
+def find_packages(root='hooke'):
packages = []
prefix = '.'+os.path.sep
- for dirpath,dirnames,filenames in walk('.'):
+ for dirpath,dirnames,filenames in walk(root):
if '__init__.py' in filenames:
if dirpath.startswith(prefix):
dirpath = dirpath[len(prefix):]