-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(image-io): add itkwasm-image-io-emscripten package
- Loading branch information
Showing
13 changed files
with
6,021 additions
and
8 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
23 changes: 23 additions & 0 deletions
23
packages/image-io/python/itkwasm-image-io-emscripten/README.md
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# itkwasm-image-io-emscripten | ||
|
||
[![PyPI version](https://badge.fury.io/py/itkwasm-image-io-emscripten.svg)](https://badge.fury.io/py/itkwasm-image-io-emscripten) | ||
|
||
Input and output for scientific and medical image file formats. Emscripten implementation. | ||
|
||
This package provides the Emscripten WebAssembly implementation. It is usually not called directly. Please use the [`itkwasm-image-io`](https://pypi.org/project/itkwasm-image-io/) instead. | ||
|
||
|
||
## Installation | ||
|
||
```sh | ||
import micropip | ||
await micropip.install('itkwasm-image-io-emscripten') | ||
``` | ||
|
||
## Development | ||
|
||
```sh | ||
pip install hatch | ||
hatch run download-pyodide | ||
hatch run test | ||
``` |
7 changes: 7 additions & 0 deletions
7
packages/image-io/python/itkwasm-image-io-emscripten/itkwasm_image_io_emscripten/__init__.py
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Generated file. To retain edits, remove this comment. | ||
|
||
"""itkwasm-image-io-emscripten: Input and output for scientific and medical image file formats. Emscripten implementation.""" | ||
|
||
|
||
|
||
from ._version import __version__ |
1 change: 1 addition & 0 deletions
1
packages/image-io/python/itkwasm-image-io-emscripten/itkwasm_image_io_emscripten/_version.py
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
__version__ = "0.4.0" |
Oops, something went wrong.