diff options
author | Max Magorsch <max@magorsch.de> | 2020-01-24 16:21:50 +0100 |
---|---|---|
committer | Max Magorsch <max@magorsch.de> | 2020-01-24 16:21:50 +0100 |
commit | b28ce0f77f46ed84c55cebeb8c65fcad79177d35 (patch) | |
tree | abc84fd7160c52a8380ff0eb4ebd035fe14b7a54 | |
parent | Add the license (diff) | |
download | tyrian-sphinx-theme-b28ce0f77f46ed84c55cebeb8c65fcad79177d35.tar.gz tyrian-sphinx-theme-b28ce0f77f46ed84c55cebeb8c65fcad79177d35.tar.bz2 tyrian-sphinx-theme-b28ce0f77f46ed84c55cebeb8c65fcad79177d35.zip |
Display the longdescription correctly on pypi
Signed-off-by: Max Magorsch <max@magorsch.de>
-rw-r--r-- | setup.py | 1 | ||||
-rw-r--r-- | tyrian_sphinx_theme/_version.py | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -14,6 +14,7 @@ setup( license = "BSD-2-Clause", description="A Tyrian based Sphinx theme for Gentoo", long_description=open('README.md', encoding='utf-8').read(), + long_description_content_type='text/markdown', author="Max Magorsch", author_email="max@magorsch.de", url="https://github.com/mmagorsc/tyrian_sphinx_theme", diff --git a/tyrian_sphinx_theme/_version.py b/tyrian_sphinx_theme/_version.py index 895d1fc..10af5dc 100644 --- a/tyrian_sphinx_theme/_version.py +++ b/tyrian_sphinx_theme/_version.py @@ -1,2 +1,2 @@ -__version_info__ = (0, 0, 2) +__version_info__ = (0, 0, 3) __version__ = ".".join(map(str, __version_info__)) |