From a190f85b1be63e9743213b0c8866a946a4a5a565 Mon Sep 17 00:00:00 2001 From: Koen Van Daele Date: Tue, 21 Apr 2020 11:41:37 +0200 Subject: [PATCH] Fix twine check. Refs #481 (#525) * Fix twine check. Refs #481 --- requirements-dev-base.txt | 3 ++- setup.py | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/requirements-dev-base.txt b/requirements-dev-base.txt index 58803f67..b307ba87 100644 --- a/requirements-dev-base.txt +++ b/requirements-dev-base.txt @@ -17,7 +17,8 @@ testfixtures==6.14.0 Sphinx==1.8.5 ; python_version < '3.5' Sphinx==2.4.4 ; python_version >= '3.5' sphinxcontrib-httpdomain==1.7.0 -pygments==2.6.1 +pygments==2.5.2 ; python_version < '3.5' +pygments==2.6.1 ; python_version >= '3.5' # waitress waitress==1.4.3 diff --git a/setup.py b/setup.py index b82eb127..65eeae1d 100644 --- a/setup.py +++ b/setup.py @@ -118,6 +118,7 @@ def run(self): version='0.7.0', description='A web based editor for thesauri adhering to the SKOS specification.', long_description=README + '\n\n' + CHANGES, + long_description_content_type='text/x-rst', classifiers=[ "Development Status :: 4 - Beta", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",