From 7b76df43668e764ce1d1630a0dba462193935a77 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sun, 13 Apr 2014 18:43:54 -0700 Subject: [PATCH] Stop using `find_packages()`; it was including tests. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index e3d0072f..c90ef653 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ import sys import os.path -from setuptools import setup, find_packages +from setuptools import setup here = os.path.abspath(os.path.dirname(__file__)) @@ -176,7 +176,7 @@ setup( test_suite = 'nose.collector', namespace_packages = ['rattail'], - packages = find_packages(), + packages = ['rattail'], include_package_data = True, zip_safe = False,