-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 1.15 KB
/
setup.py
File metadata and controls
30 lines (29 loc) · 1.15 KB
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
import htmloutputparallel.version
import setuptools
setuptools.setup(
name="nose-html-output-parallel",
version=htmloutputparallel.version.__version__,
author='Rui Li',
author_email = 'rui.li.spam@gmail.com',
description="Nose plugin to produce test results in html and works with parallel testing (--processes=N).",
license="GNU GENERAL PUBLIC LICENSE, Version 3",
url="https://github.com/ruivapps/htmloutputparallel",
download_url='https://github.com/ruivapps/htmloutputparallel/tarball/1.3',
packages=["htmloutputparallel"],
package_dir={'htmloutputparallel':'htmloutputparallel'},
package_data={'htmloutputparallel': ['templates/*.jinja2']},
install_requires=['nose', 'Jinja2'],
classifiers=[
"Environment :: Console",
"Topic :: Software Development :: Testing",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
entry_points={
'nose.plugins.0.10': [
'html-output = htmloutputparallel.htmloutputparallel:HtmlOutput'
]
}
)