Stop using find_packages(); it was including tests.

This commit is contained in:
Lance Edgar 2014-04-13 18:51:04 -07:00
parent 389bb5dcc6
commit ec65a9ee07

View file

@ -24,7 +24,7 @@
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__))
@ -136,7 +136,7 @@ setup(
tests_require = ['Tailbone[tests]'], tests_require = ['Tailbone[tests]'],
test_suite = 'nose.collector', test_suite = 'nose.collector',
packages = find_packages(), packages = ['tailbone'],
include_package_data = True, include_package_data = True,
zip_safe = False, zip_safe = False,