generated from ArcanaFramework/fileformats-extension-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
58 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ | |
from . import diffusion | ||
from . import nifti | ||
from . import raw | ||
from . import base |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ name = "fileformats-medimage" | |
description = "Classes for representing various medical imaging file formats in Python classes for use in type hinting in data workflows" | ||
readme = "README.rst" | ||
requires-python = ">=3.8" | ||
dependencies = ["fileformats >=0.7.1"] | ||
dependencies = ["fileformats >=0.14.1"] | ||
license = { file = "LICENSE" } | ||
authors = [{ name = "Thomas G. Close", email = "[email protected]" }] | ||
maintainers = [{ name = "Thomas G. Close", email = "[email protected]" }] | ||
|
@@ -29,7 +29,14 @@ classifiers = [ | |
dynamic = ["version"] | ||
|
||
[project.optional-dependencies] | ||
dev = ["black", "pre-commit", "codespell", "flake8", "flake8-pyproject"] | ||
dev = [ | ||
"black", | ||
"pre-commit", | ||
"codespell", | ||
"flake8", | ||
"flake8-pyproject", | ||
"typing_extensions >= 4.6", | ||
] | ||
test = [ | ||
"pytest >=6.2.5", | ||
"pytest-env>=0.6.2", | ||
|