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