Description: Modify setuptools configuration to use nosetests
 Configure nose setuptools configuration as described in
 https://nose.readthedocs.org/en/latest/setuptools_integration.html
 and the manpage for the executable
Author: Afif Elghraoui <afif@ghraoui.name>
Forwarded: not-needed
Last-Update: 2015-08-06
--- python-pbcore.orig/setup.cfg
+++ python-pbcore/setup.cfg
@@ -1,2 +1,5 @@
 [metadata]
 description-file = README.md
+[nosetests]
+verbosity=2
+where=tests
--- python-pbcore.orig/setup.py
+++ python-pbcore/setup.py
@@ -49,6 +49,7 @@
                                'data/datasets/yieldtest/*.*']
                                },
     zip_safe = False,
+    test_suite = 'nose.collector',
     entry_points = { "console_scripts" : [ ".open = pbcore.io.opener:entryPoint" ] },
     scripts=['bin/dataset.py'],
     install_requires=_get_local_requirements(_REQUIREMENTS_FILE),
