From 0a97b65254957269c05e2336d273bf7e60b8115b Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Wed, 8 Aug 2012 10:59:54 -0700 Subject: [PATCH] Actually install the htmloutput package. setup.py didn't have a package list and wasn't actually installing anything other than the entrypoint. Fix that and actually install the package. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 04d5c46..3062c9f 100644 --- a/setup.py +++ b/setup.py @@ -8,6 +8,7 @@ setuptools.setup( description="Nose plugin to produce test results in html.", license="Apache License, Version 2.0", url="https://github.com/cboylan/nose-html-output", + packages=["htmloutput"], setup_requires=['nose'], install_requires=['nose'], classifiers=[