Skip to content

Commit cccf16e

Browse files
Specify proper markdown and content type in setup script
1 parent 1d247b5 commit cccf16e

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
here = os.path.abspath(os.path.dirname(__file__))
1111

1212
try:
13-
README = open(os.path.join(here, 'README.rst')).read()
14-
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
13+
README = open(os.path.join(here, 'README.md')).read()
14+
CHANGES = open(os.path.join(here, 'CHANGES.md')).read()
1515
except Exception:
1616
README = ''
1717
CHANGES = ''
@@ -28,6 +28,7 @@
2828

2929
author='Sift Science',
3030
author_email='support@siftscience.com',
31+
long_description_content_type="text/markdown",
3132
long_description=README + '\n\n' + CHANGES,
3233

3334
packages=['sift'],

0 commit comments

Comments
 (0)