Skip to content

Commit f851277

Browse files
committed
Bump version to 2.3.2
1 parent 1dea204 commit f851277

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

setup.py

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010
with codecs.open(ver_path, 'rb', 'utf8') as ver_file:
1111
exec(ver_file.read(), main_ns)
1212

13+
# Load README.md
14+
readme_path = convert_path('README.md')
15+
with codecs.open(readme_path, 'rb', 'utf8') as readme_file:
16+
long_description = readme_file.read()
17+
1318
install_requires = ['six>=1.4.0']
1419

1520
# this is for sdist to work.
@@ -21,13 +26,14 @@
2126
setup(
2227
name = 'unittest-xml-reporting',
2328
version = main_ns['__version__'],
24-
author = 'Daniel Fernandes Martins',
25-
author_email = 'daniel.tritone@gmail.com',
29+
author = 'Daniel Fernandes Martins, Damien Nozay',
2630
description = 'unittest-based test runner with Ant/JUnit like XML reporting.',
31+
long_description = long_description,
32+
long_description_content_type = 'text/markdown',
2733
license = 'BSD',
2834
platforms = ['Any'],
2935
keywords = [
30-
'pyunit', 'unittest', 'junit xml', 'report', 'testrunner', 'xmlrunner'
36+
'pyunit', 'unittest', 'junit xml', 'xunit', 'report', 'testrunner', 'xmlrunner'
3137
],
3238
url = 'http://github.com/xmlrunner/unittest-xml-reporting/tree/master/',
3339
classifiers = [
@@ -44,6 +50,7 @@
4450
'Programming Language :: Python :: 3.4',
4551
'Programming Language :: Python :: 3.5',
4652
'Programming Language :: Python :: 3.6',
53+
'Programming Language :: Python :: 3.7',
4754
'Programming Language :: Python :: Implementation :: CPython',
4855
'Programming Language :: Python :: Implementation :: PyPy',
4956
'Topic :: Software Development :: Libraries :: Python Modules',

xmlrunner/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11

2-
__version__ = '2.3.1'
2+
__version__ = '2.3.2'

0 commit comments

Comments
 (0)