Skip to content

Commit 46ff039

Browse files
committed
fix long description
1 parent 7c949f2 commit 46ff039

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pymare/info.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616
authors = [author['name'] for author in zenodo_info['creators']]
1717
authors = [author.split(', ')[1] + ' ' + author.split(', ')[0] for author in authors]
1818

19+
readme_file = op.join(op.dirname(__file__), 'README.md')
20+
with open(readme_file, encoding='utf-8') as f:
21+
longdesc = f.read()
22+
1923
AUTHOR = 'PyMARE developers'
2024
COPYRIGHT = 'Copyright 2019--now, PyMARE developers'
2125
CREDITS = authors
@@ -26,8 +30,8 @@
2630
URL = 'https://github.com/neurostuff/PyMARE'
2731
PACKAGENAME = 'PyMARE'
2832
DESCRIPTION = 'PyMARE: Python Meta-Analysis & Regression Engine'
29-
LONGDESC = """
30-
"""
33+
LONGDESC = longdesc
34+
LONGDESCCONTTYPE = "text/markdown"
3135

3236
DOWNLOAD_URL = (
3337
'https://github.com/neurostuff/{name}/archive/{ver}.tar.gz'.format(

0 commit comments

Comments
 (0)