File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 1616authors = [author ['name' ] for author in zenodo_info ['creators' ]]
1717authors = [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+
1923AUTHOR = 'PyMARE developers'
2024COPYRIGHT = 'Copyright 2019--now, PyMARE developers'
2125CREDITS = authors
2630URL = 'https://github.com/neurostuff/PyMARE'
2731PACKAGENAME = 'PyMARE'
2832DESCRIPTION = 'PyMARE: Python Meta-Analysis & Regression Engine'
29- LONGDESC = """
30- "" "
33+ LONGDESC = longdesc
34+ LONGDESCCONTTYPE = "text/markdown "
3135
3236DOWNLOAD_URL = (
3337 'https://github.com/neurostuff/{name}/archive/{ver}.tar.gz' .format (
You can’t perform that action at this time.
0 commit comments