-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (27 loc) · 1.57 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import setuptools
setuptools.setup(name='nose-cov',
version='1.6',
description='nose plugin for coverage reporting, including subprocesses and multiprocessing',
long_description=open('README.txt').read().strip(),
author='Meme Dough',
author_email='memedough@gmail.com',
url='http://bitbucket.org/memedough/nose-cov/overview',
py_modules=['nose_cov'],
install_requires=['nose>=0.11.4',
'cov-core>=1.6'],
entry_points={'nose.plugins': ['cov = nose_cov:Cov']},
license='MIT License',
zip_safe=False,
keywords='nose nosetest cover coverage',
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Topic :: Software Development :: Testing'])