Stop using find_packages()
; it was including tests.
This commit is contained in:
parent
389bb5dcc6
commit
ec65a9ee07
4
setup.py
4
setup.py
|
@ -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,
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue