We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9f2f98 commit fb68ffeCopy full SHA for fb68ffe
setup.py
@@ -4,22 +4,19 @@
4
5
from setuptools import setup, find_packages
6
7
-try:
8
- import pypandoc
9
10
- LONG_DESCRIPTION = pypandoc.convert("README.md", "rst")
11
-except (IOError, ImportError):
12
- if isfile("README.md"):
13
- LONG_DESCRIPTION = open("README.md").read()
14
- else:
15
- LONG_DESCRIPTION = ""
+if isfile("README.md"):
+ LONG_DESCRIPTION = open("README.md").read()
+else:
+ LONG_DESCRIPTION = ""
16
17
18
setup(
19
name="django-pgviews-redux",
20
version="0.6.0",
21
description="Create and manage Postgres SQL Views in Django",
22
long_description=LONG_DESCRIPTION,
+ long_description_content_type="text/markdown",
23
author="Mikuláš Poul",
24
author_email="[email protected]",
25
license="Public Domain",
0 commit comments