summaryrefslogtreecommitdiff
path: root/examples/html_plugin/setup.py
blob: 3caa08d5d469d4c052dbe6b67c5bb5b5a9b5d091 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import sys
try:
    import ez_setup
    ez_setup.use_setuptools()
except ImportError:
    pass

from setuptools import setup

setup(
    name='Example html output plugin',
    version='0.1',
    author='Jason Pellerin',
    author_email = 'jpellerin+nose@gmail.com',
    description = 'Example nose html output plugin',
    license = 'GNU LGPL',
    py_modules = ['htmlplug'],
    entry_points = {
        'nose.plugins.0.10': [
            'htmlout = htmlplug:HtmlOutput'
            ]
        }

    )