-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
prepared for distribution
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# MANIFEST.in | ||
|
||
recursive-include demo * | ||
prune demo/.ipynb_checkpoints |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,20 @@ | ||
# South Edinburgh Perfusion Analysis Library (SEPAL) | ||
# South Edinburgh Perfusion+ Analysis Library (SEPAL) | ||
|
||
**Please note: This library is also hosted in the [OSIPI DCE-DSC-MRI_CodeCollection repository](https://github.com/OSIPI/DCE-DSC-MRI_CodeCollection), where unit tests and perfusion code by other authors can also be found.** | ||
|
||
Python library for simulating and fitting DCE-MRI data. It permits arbitrary combinations of pulse sequence, pharmacokinetic model, water exchange model, etc. The code is a work-in-progress, has not been extensively tested and is not recommended or approved for clinical use. | ||
Python library for simulating and fitting DCE- and other quantitative MRI data. It permits arbitrary combinations of pulse sequence, pharmacokinetic model, water exchange model, etc. The code is a work-in-progress, has not been extensively tested and is not recommended or approved for clinical use. | ||
|
||
Created 28 September 2020 | ||
@authors: Michael Thrippleton | ||
@email: [email protected] | ||
@institution: University of Edinburgh, UK | ||
|
||
### Installation: | ||
pip install sepal | ||
|
||
### Use: | ||
Most functionality is demonstrated in Jupyter notebook format in ./demo | ||
|
||
### Functionality: | ||
- Enhancement-to-concentration conversion (assuming fast water exchange) | ||
- Fit tissue concentration using pharmacokinetic model | ||
|
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# pyproject.toml | ||
|
||
[build-system] | ||
requires = ["setuptools>=61.0.0", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "sepal" | ||
version = "1.0.0" | ||
description = "Quantitative MRI processing" | ||
readme = "README.md" | ||
authors = [{ name = "Michael Thrippleton", email = "[email protected]" }] | ||
license = { file = "LICENSE" } | ||
classifiers = [ | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
] | ||
keywords = ["MRI", "perfusion", "quantitative"] | ||
dependencies = [ | ||
"numpy", | ||
"scipy", | ||
"nibabel", | ||
"joblib", | ||
] | ||
requires-python = ">=3.7" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/mjt320/SEPAL" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# setup.py | ||
|
||
from setuptools import setup | ||
|
||
setup() |