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 d99d6ff commit 32d8f53Copy full SHA for 32d8f53
setup.py
@@ -2,11 +2,7 @@
2
3
4
def read_md(filename):
5
- try:
6
- from pypandoc import convert_file
7
- return convert_file(filename, 'rst')
8
- except (ImportError, OSError):
9
- return open(filename).read()
+ return open(filename).read()
10
11
12
def parse_requirements(filename):
@@ -23,6 +19,7 @@ def parse_requirements(filename):
23
19
version='2.1.6',
24
20
description='A django library for mocking queryset functions in memory for testing',
25
21
long_description=read_md('README.md'),
22
+ long_description_content_type='text/markdown',
26
url='https://github.com/stphivos/django-mock-queries',
27
author='Phivos Stylianides',
28
author_email='[email protected]',
0 commit comments