forked from xmlrunner/unittest-xml-reporting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 1.11 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name = 'unittest-xml-reporting',
version = '1.3.2',
author = 'Daniel Fernandes Martins',
author_email = 'daniel.tritone@gmail.com',
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',
'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',
)