Prepare for tests.

This doesn't add any actual tests but it should pave the way for that.  Tests
may be run like so:

.. code-block:: sh

   python setup.py nosetests --with-coverage
This commit is contained in:
Lance Edgar 2013-06-18 22:19:52 -07:00
parent 25611f1e68
commit 4fe5ad9bf0
7 changed files with 68 additions and 30 deletions

View file

@ -209,6 +209,8 @@ setup(
install_requires = requires,
extras_require = extras,
tests_require = requires + ['nose'],
test_suite = 'nose.collector',
packages = find_packages(),
include_package_data = True,