Skip to content

Commit

Permalink
Fix: Use default Markdown parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
dgilling committed Jun 8, 2019
1 parent 8a3cde5 commit c32cb81
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion requirements-dev.txt

This file was deleted.

7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,13 @@
# To use a consistent encoding
from codecs import open
from os import path
import register

here = path.abspath(path.dirname(__file__))

# Get the long description from the README file
register.run
long_description = ''
if path.exists('README.rst'):
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
if path.exists('README.md'):
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
Expand All @@ -34,6 +32,7 @@

description='Moesif Python request',
long_description=long_description,
long_description_content_type="text/markdown",

# The project's main homepage.
url='https://www.moesif.com/docs',
Expand Down

0 comments on commit c32cb81

Please sign in to comment.