-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
48 lines (42 loc) · 1.33 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
47
48
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
version = '2.0.3.dev0'
requires = [
'setuptools',
'six',
'zope.testing',
'zope.testrunner',
'zc.recipe.egg',
]
setup(
name='collective.xmltestreport',
version=version,
description='A test runner which can output an XML report compatible '
'with JUnit and Jenkins',
long_description=(open('README.rst').read() + '\n' +
open('CHANGES.rst').read()),
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='jenkins junit xml zope.testing',
author='Martin Aspeli',
author_email='[email protected]',
url='https://pypi.org/project/collective.xmltestreport',
license='ZPL 2.1',
packages=find_packages(),
namespace_packages=['collective'],
include_package_data=True,
zip_safe=False,
install_requires=requires,
entry_points="""
[zc.buildout]
default = collective.xmltestreport.recipe:TestRunner
""",
)