forked from xmlrunner/unittest-xml-reporting
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
executable file
·34 lines (31 loc) · 1.2 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
#!/usr/bin/env python
from setuptools import setup
from xmlrunner.version import __version__
setup(
name='xmlrunner',
version=__version__,
author='Daniel Fernandes Martins',
author_email='[email protected]',
description='PyUnit-based test runner with JUnit like XML reporting.',
license='LGPL',
platforms=['Any'],
keywords=['pyunit', 'unittest', 'junit xml', 'report', 'testrunner'],
url='https://github.com/pycontribs/xmlrunner',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing'
],
packages=['xmlrunner', 'xmlrunner.tests', 'xmlrunner.extra'],
provides=['xmlrunner'],
zip_safe=True,
include_package_data=True,
test_suite='xmlrunner.tests.test_xmlrunner'
)