summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Mayer <entroP@gmail.com>2020-08-20 19:20:51 +0200
committerJustin Mayer <entroP@gmail.com>2020-08-20 19:20:51 +0200
commit0ab6ac97983952c00b7b7e8b8de3c1e0cd22127f (patch)
tree97488420373a59f91e5184c9d6350aa0edbeb102
parent4bda2745ac2d654efd436d20e31895f3d7705036 (diff)
downloadpelican-4.5.0.tar.gz
Fix PyPI-related reST/README issues4.5.0
-rw-r--r--README.rst2
-rwxr-xr-xsetup.py4
2 files changed, 4 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index dee92234..f0685483 100644
--- a/README.rst
+++ b/README.rst
@@ -1,5 +1,5 @@
Pelican |build-status| |pypi-version| |repology|
-=====================================
+================================================
Pelican is a static site generator, written in Python_.
diff --git a/setup.py b/setup.py
index e5aa7141..00aff78b 100755
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
from os import walk
from os.path import join, relpath
-from setuptools import setup, find_packages
+from setuptools import find_packages, setup
version = "4.5.0"
@@ -44,6 +44,7 @@ setup(
keywords='static web site generator SSG reStructuredText Markdown',
license='AGPLv3',
long_description=description,
+ long_description_content_type='text/x-rst',
packages=find_packages(),
include_package_data=True, # includes all in MANIFEST.in if in package
# NOTE : This will collect any files that happen to be in the themes
@@ -68,6 +69,7 @@ setup(
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
+ 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',