forked from xmlrunner/unittest-xml-reporting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·32 lines (30 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name = 'unittest-xml-reporting',
version = '1.4.1',
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 = 'http://github.com/danielfm/unittest-xml-reporting/tree/master/',
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 = find_packages('src'),
package_dir = {'':'src'},
zip_safe = False,
include_package_data = True,
test_suite = 'xmlrunner.tests.testsuite'
)