diff options
author | Bradley M. Froehle <brad.froehle@gmail.com> | 2012-11-12 17:46:17 -0800 |
---|---|---|
committer | Bradley M. Froehle <brad.froehle@gmail.com> | 2012-11-12 17:46:17 -0800 |
commit | 926a56a7c4eb01cfee79b17c39d79c3a174dc061 (patch) | |
tree | 7c1b36723dcced45b35d189256630c4abd276bd3 /setup.py | |
parent | 5829e8e77f87f55f19d86cb8626b52c58bbfabea (diff) | |
download | nose-926a56a7c4eb01cfee79b17c39d79c3a174dc061.tar.gz |
Stop forgetting to install package 'nose.tools'.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -68,7 +68,8 @@ try: except ImportError: from distutils.core import setup addl_args = dict( - packages = ['nose', 'nose.ext', 'nose.plugins', 'nose.sphinx'], + packages = ['nose', 'nose.ext', 'nose.plugins', 'nose.sphinx', + 'nose.tools'], scripts = ['bin/nosetests'], ) |