diff options
author | Louis-Francis Ratté-Boulianne <louis-francis.ratte-boulianne@collabora.co.uk> | 2011-04-12 23:40:28 -0400 |
---|---|---|
committer | Louis-Francis Ratté-Boulianne <louis-francis.ratte-boulianne@collabora.co.uk> | 2011-04-12 23:40:28 -0400 |
commit | ebf8b57cff538c2f405377b4889e7a0f3bbacd6a (patch) | |
tree | 2eba99c3aee585970bf4bf5dbdf52ffe875ead14 | |
parent | df7a14eef27ce0c340969d1b85be8a034b2964a8 (diff) |
package: don't add tests files to package
They were installed in python site-package root directory. That needs to be fixed before packaging the tests again.
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ if pieces[-1] == '': else: len_root_dir = len(pieces) -for directory in ('papyon', 'tests'): +for directory in ('papyon'): papyon_dir = os.path.join(root_dir, directory) for dirpath, dirnames, filenames in os.walk(papyon_dir): # Ignore dirnames that start with '.' |