From b14934d3ba8ec551966b8da59f2104b006aa0b16 Mon Sep 17 00:00:00 2001 From: "Daniel M. Capella" Date: Sun, 25 Jun 2017 20:42:00 +0000 Subject: [PATCH] Use nose setuptools integration https://nose.readthedocs.io/en/latest/setuptools_integration.html --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 540e49d..e4314a6 100644 --- a/setup.py +++ b/setup.py @@ -27,6 +27,7 @@ setup( entry_points={ 'console_scripts': ['gixy=gixy.cli.main:main'], }, + test_suite='nose.collector', packages=find_packages(exclude=['tests', 'tests.*']), classifiers=[ 'Development Status :: 3 - Alpha', @@ -37,5 +38,5 @@ setup( 'Topic :: Software Development :: Quality Assurance', 'Topic :: Software Development :: Testing' ], - include_package_data=True, - ) + include_package_data=True +)