Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "dcebe"
version = "0.1.0.dev0"
version = "0.1.0"
description = "Bolus arrival time estimation for DCE-MRI signals via spline models with generalized cross-validation"
license = { file = "LICENSE" }
authors = [
Expand Down
6 changes: 2 additions & 4 deletions python/dcebe/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,11 @@
small animals based on spline models", Physics in Medicine & Biology
64(4), 2019. DOI: 10.1088/1361-6560/aafce7

The user-facing API is :func:`estimate_bat`. The current build is
``0.1.0.dev0`` and exposes only the spline-construction primitives;
:func:`estimate_bat` lands in a later port day.
The user-facing API is :func:`estimate_bat`.
"""
from __future__ import annotations

from ._solve import EstimateResult, estimate_bat

__all__ = ["EstimateResult", "estimate_bat"]
__version__ = "0.1.0.dev0"
__version__ = "0.1.0"
Loading