summaryrefslogtreecommitdiffstats
path: root/test/unittest/plugins/setup.py
blob: b3a6464efdb05ebcf1cd799e6db02ed6f7fdf3f0 (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='func coverage output pluin',
    version='0.1',
    author='Adrian Likins',
    author_email = 'alikins@redhat.com',
    description = 'extended coverage output',
    license = 'public domain',
    py_modules = ['funccover'],
    entry_points = {
        'nose.plugins': [
            'funccoverplug = funccover:FuncCoverage'
            ]
        }

    )