-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·38 lines (37 loc) · 1.28 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
29
30
31
32
33
34
35
36
37
38
from setuptools import setup, find_packages
setup(
name="nose-subunit",
version="0.3",
description="""Subunit output adapter for nose""",
long_description="""Change output of the nose testing tool result into subunit format.""",
author="liucougar",
author_email="[email protected]",
url="http://www.liucougar.net/blog/nose-subunit",
download_url="http://pypi.python.org/pypi/nose-subunit/",
platforms="Independent",
install_requires = [
"nose>=0.11.3",
"python-subunit",
#subunit 0.0.6 should specify this explicitly, but it just specify testtools
"testtools>=0.9.4",
],
#packages=['tests'],
scripts=[],
license="BSD",
zip_safe=False,
py_modules=['sunit'],
entry_points = {
'nose.plugins.0.10': ['subunit = sunit:Subunit'], #, 'warning = warning:Warnings'
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Python Software Foundation License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
],
keywords='test unittest nosetests nose plugin subunit',
test_suite = 'nose.collector'
)