Switch to unified view

a b/NoWarnings/setup.py
1
try:
2
    import ez_setup
3
    ez_setup.use_setuptools()
4
except ImportError:
5
    pass
6
7
from setuptools import setup
8
9
setup(
10
    name='NoWarnings plugin',
11
    version='1.0',
12
    author='Wolf',
13
    author_email='wolf@geek.net',
14
    description='A nose plugin to squelch warnings',
15
    license='GPL',
16
    py_modules=['nowarnings'],
17
    entry_points={
18
        'nose.plugins.0.10': [
19
            'nowarnings = nowarnings:NoWarnings'
20
        ]
21
    }
22
)