Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor update #149

Merged
merged 5 commits into from
Feb 1, 2024
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
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ jobs:
python -m pip install --upgrade pip
pip install .[dev]

- name: Install optional dependencies for ITK dataset
run: |
pip install .[SimpleITK]

- name: Install tutorial
run: make tests/tutorials

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/BrkRaw/tutorials/master)

## BrkRaw: A comprehensive tool to access raw Bruker Biospin MRI data
#### Version: 0.3.8
#### Version: 0.3.11

### Description

Expand Down
2 changes: 1 addition & 1 deletion brkraw/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .lib import *

__version__ = '0.3.10'
__version__ = '0.3.11'
__all__ = ['BrukerLoader', '__version__']


Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies = [
]
description = "Bruker PvDataset Loader"
license = {text = "GNLv3"}
version = "0.3.10"
dynamic = ["version"]
maintainers = [{name = "SungHo Lee", email = 'shlee@unc.edu'}]
name = "brkraw"
readme = "README.md"
Expand All @@ -40,6 +40,9 @@ dev = [
"nbmake"
]

[tool.setuptools.dynamic]
version = {attr = "nordic.__version__"}

[project.scripts]
brkraw = "brkraw.scripts.brkraw:main"
brk-backup = 'brkraw.scripts.brk_backup:main'