Skip to content

Commit

Permalink
[DOC] Use README as long_desc (#595)
Browse files Browse the repository at this point in the history
* Use README as long_desc

* fix path handling

* since we're using pathlib... use it
  • Loading branch information
emdupre authored Aug 26, 2020
1 parent 75bdda8 commit 150b5c0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tedana/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
"""
Base module variables
"""
from pathlib import Path
readme_path = Path(__file__).parent.parent.joinpath("README.md")

from ._version import get_versions
__version__ = get_versions()['version']
Expand All @@ -21,7 +23,7 @@
__packagename__ = 'tedana'
__description__ = ('TE-Dependent Analysis (tedana) of multi-echo functional '
'magnetic resonance imaging (fMRI) data.')
__longdesc__ = ('To do.')
__longdesc__ = readme_path.open().read()

DOWNLOAD_URL = (
'https://github.com/ME-ICA/{name}/archive/{ver}.tar.gz'.format(
Expand Down

0 comments on commit 150b5c0

Please sign in to comment.