Child: [d8d077] (diff)

Download this file

setup.py    23 lines (20 with data), 444 Bytes

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