Skip to content

Commit b84a765

Browse files
authored
Replace references to README.rst with README.md (#359)
* Replace references to README.rst with README.md * Update desc content type
1 parent f596168 commit b84a765

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

MANIFEST.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
include LICENSE
33

44
# Include readme file
5-
include README.rst
5+
include README.md
66

77
# Include the data files
88
# recursive-include data *
99

1010
# If using Python 2.6 or less, then have to include package data, even though
1111
# it's already declared in setup.py
12-
# include sample/*.dat
12+
# include sample/*.dat

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
here = path.abspath(path.dirname(__file__))
1212

1313
# Get the long description from the README file
14-
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
14+
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
1515
long_description = f.read()
1616

1717
# Get the version number from the version.py file
@@ -28,6 +28,7 @@
2828

2929
description='The WFDB Python Toolbox',
3030
long_description=long_description,
31+
long_description_content_type="text/markdown",
3132

3233
# The project's main homepage.
3334
url='https://github.com/MIT-LCP/wfdb-python',

0 commit comments

Comments
 (0)