-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (44 loc) · 1.42 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
39
40
41
42
43
44
45
46
###############################################################################
#
# Copyright 2017 by Plone Foundation and Shoobx, Inc.
#
###############################################################################
"""Shoobx JUnit XML Setup
"""
import sys
from setuptools import setup, find_packages
setup(
name='shoobx.junitxml',
version='0.3.1.dev0',
description=
'A zope.testrunner output formatter & feature to output JUnit XML.',
long_description=(
open('README.rst').read() + '\n' +
open('CHANGES.rst').read()),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='jenkins junit xml zope.testing',
author='Shoobx, Inc. and Martin Aspelli',
author_email='dev@shoobx.com',
url='https://github.com/shoobx/shoobx.junitxml',
license='ZPL 2.1',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=[
'lxml',
'setuptools',
'zope.testrunner',
],
test_suite='shoobx.junitxml',
)