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 733e752 commit c524ce7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 20 deletions.
14 changes: 0 additions & 14 deletions register.py

This file was deleted.

1 change: 0 additions & 1 deletion requirements-dev.txt

This file was deleted.

9 changes: 4 additions & 5 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,7 +32,8 @@

description='Moesif Middleware for Python Django',
long_description=long_description,

long_description_content_type="text/markdown",

# The project's main homepage.
url='https://www.moesif.com/docs/server-integration/django/',

Expand Down

0 comments on commit c524ce7

Please sign in to comment.