Skip to content

Commit 24cc2ce

Browse files
author
Rui Li
committed
update for pypi
1 parent 578ef13 commit 24cc2ce

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# HTML Output Parallel (htmloutputparallel)
1+
# Nose HTML Output Parallel (nose-html-output-parallel)
22
## Why another nose plugin
33
I really **need** the HTML test report
44

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22
import setuptools
33

44
setuptools.setup(
5-
name="nose html output parallel",
5+
name="nose-html-output-parallel",
66
version=htmloutputparallel.version.__version__,
77
author='Rui Li',
8+
author_email = 'rui.li.spam@gmail.com',
89
description="Nose plugin to produce test results in html and works with parallel testing (--processes=N).",
910
license="GNU GENERAL PUBLIC LICENSE, Version 3",
10-
url="https://github.com/ruivapps/htmloutputparallel"
11+
url="https://github.com/ruivapps/htmloutputparallel",
12+
download_url='https://github.com/ruivapps/htmloutputparallel/tarball/1.0',
1113
packages=["htmloutputparallel"],
1214
package_dir={'htmloutputparallel':'htmloutputparallel'},
1315
package_data={'htmloutputparallel': ['templates/*.jinja2']},
@@ -17,9 +19,8 @@
1719
"Topic :: Software Development :: Testing",
1820
"Intended Audience :: Developers",
1921
"Intended Audience :: Information Technology",
20-
"License :: GNU GENERAL PUBLIC LICENSE, Version 3",
2122
"Operating System :: OS Independent",
22-
"Programming Language :: Python"
23+
"Programming Language :: Python",
2324
],
2425
entry_points={
2526
'nose.plugins.0.10': [

0 commit comments

Comments
 (0)