|
10 | 10 | with codecs.open(ver_path, 'rb', 'utf8') as ver_file: |
11 | 11 | exec(ver_file.read(), main_ns) |
12 | 12 |
|
| 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 | + |
13 | 18 | install_requires = ['six>=1.4.0'] |
14 | 19 |
|
15 | 20 | # this is for sdist to work. |
|
21 | 26 | setup( |
22 | 27 | name = 'unittest-xml-reporting', |
23 | 28 | version = main_ns['__version__'], |
24 | | - author = 'Daniel Fernandes Martins', |
25 | | - author_email = 'daniel.tritone@gmail.com', |
| 29 | + author = 'Daniel Fernandes Martins, Damien Nozay', |
26 | 30 | description = 'unittest-based test runner with Ant/JUnit like XML reporting.', |
| 31 | + long_description = long_description, |
| 32 | + long_description_content_type = 'text/markdown', |
27 | 33 | license = 'BSD', |
28 | 34 | platforms = ['Any'], |
29 | 35 | keywords = [ |
30 | | - 'pyunit', 'unittest', 'junit xml', 'report', 'testrunner', 'xmlrunner' |
| 36 | + 'pyunit', 'unittest', 'junit xml', 'xunit', 'report', 'testrunner', 'xmlrunner' |
31 | 37 | ], |
32 | 38 | url = 'http://github.com/xmlrunner/unittest-xml-reporting/tree/master/', |
33 | 39 | classifiers = [ |
|
44 | 50 | 'Programming Language :: Python :: 3.4', |
45 | 51 | 'Programming Language :: Python :: 3.5', |
46 | 52 | 'Programming Language :: Python :: 3.6', |
| 53 | + 'Programming Language :: Python :: 3.7', |
47 | 54 | 'Programming Language :: Python :: Implementation :: CPython', |
48 | 55 | 'Programming Language :: Python :: Implementation :: PyPy', |
49 | 56 | 'Topic :: Software Development :: Libraries :: Python Modules', |
|
0 commit comments