Stop using find_packages(); it was including tests.

This commit is contained in:
Lance Edgar 2014-04-13 18:43:54 -07:00
parent 551d25593b
commit 7b76df4366

View file

@ -25,7 +25,7 @@
import sys import sys
import os.path import os.path
from setuptools import setup, find_packages from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__)) here = os.path.abspath(os.path.dirname(__file__))
@ -176,7 +176,7 @@ setup(
test_suite = 'nose.collector', test_suite = 'nose.collector',
namespace_packages = ['rattail'], namespace_packages = ['rattail'],
packages = find_packages(), packages = ['rattail'],
include_package_data = True, include_package_data = True,
zip_safe = False, zip_safe = False,