forked from optilude/corejet.testrunner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.24 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
from setuptools import setup, find_packages
version = '1.0a4'
requires = [
'setuptools',
'lxml',
'zope.testrunner',
'corejet.core',
'corejet.visualization',
'zc.recipe.egg',
'zope.dottedname',
]
setup(name='corejet.testrunner',
version=version,
description="A test runner which can output an XML report compatible "
"with JUnit and Hudson/Jenkins as well as XML and HTML "
"reports compatible with the CoreJet BDD standard",
long_description=open("README.txt").read() + "\n" +
open("CHANGES.txt").read(),
classifiers=[
"Programming Language :: Python",
],
keywords='hudson jenkins junit xml corejet zope.testing',
author='Martin Aspeli',
author_email='[email protected]',
url='http://corejet.org',
license='ZPL 2.1',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['corejet'],
include_package_data=True,
zip_safe=False,
install_requires=requires,
entry_points="""
[zc.buildout]
default = corejet.testrunner.recipe:TestRunner
[corejet.repositorysource]
file = corejet.testrunner.filesource:fileSource
""",
)