Skip to content

Commit

Permalink
Ok not reading ANY files for long_description
Browse files Browse the repository at this point in the history
  • Loading branch information
bbfrederick committed Nov 15, 2024
1 parent 30e8734 commit d27f51f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
description_file = README.rst
name = rapidtide
description = Tools for performing time delay analysis on fMRI data
long_description = file: LONGDESC.rst
long_description_content_type = text/x-rst; charset=UTF-8
long_description = Rapidtide is a suite of Python programs used to model, characterize, visualize, and remove time varying, physiological blood signals from fMRI and fNIRS datasets. The primary workhorses of the package are the rapidtide program, which characterizes bulk blood flow, and happy, which focusses on the cardiac band.\nFull documentation is at: http://rapidtide.readthedocs.io/en/latest/
url = https://github.com/bbfrederick/rapidtide
author = Blaise Frederick
author_email = [email protected],
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@
here = path.abspath(path.dirname(__file__))

# Get the long description from the README file
with open(path.join(here, "LONGDESC.rst"), encoding="utf-8") as f:
long_description = f.read()
#with open(path.join(here, "LONGDESC.rst"), encoding="utf-8") as f:
# long_description = f.read()
long_description = "Rapidtide is a suite of Python programs used to model, characterize, visualize, and remove time varying, physiological blood signals from fMRI and fNIRS datasets. The primary workhorses of the package are the rapidtide program, which characterizes bulk blood flow, and happy, which focusses on the cardiac band.\nFull documentation is at: http://rapidtide.readthedocs.io/en/latest/"

# Write version number out to VERSION file
version = versioneer.get_version()
Expand Down

0 comments on commit d27f51f

Please sign in to comment.