Skip to content

Commit

Permalink
Fix setup.py for markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
caspervdw committed Apr 5, 2021
1 parent 0664876 commit 5ca0950
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,6 @@
except OSError:
descr = ''

try:
from pypandoc import convert
descr = convert(descr, 'rst', format='md')
except ImportError:
pass


# In some cases, the numpy include path is not present by default.
# Let's try to obtain it.
try:
Expand Down Expand Up @@ -43,6 +36,7 @@
],
packages = ['trackpy', 'trackpy.refine', 'trackpy.linking', 'trackpy.locate_functions'],
long_description = descr,
long_description_content_type='text/markdown'
)

setup(**setup_parameters)

0 comments on commit 5ca0950

Please sign in to comment.