From df347fb654c7e749c9af6d366e3a02a298257093 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Reni=C3=A9?= Date: Sat, 16 Mar 2013 10:31:02 +0100 Subject: [PATCH] Added a MANIFEST excluding tests from distribution Otherwise find_packages() sees tests/ as something that must be installed. Currently installing `rq` creates a `tests` directory in `site-packages`, conflicting with projects having a local `tests` directory like rq does :) --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..aae95799 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +recursive-exclude tests *