-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #148 from henrypinkard/main
Change name to NDStorage
- Loading branch information
Showing
21 changed files
with
38 additions
and
38 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name = "ndstorage" | ||
|
||
from ndstorage.ndstorage_base import NDStorageAPI, WritableNDStorageAPI | ||
from ndstorage._superclass import Dataset | ||
from ndstorage.ndtiff_dataset import NDTiffDataset | ||
from ndstorage.ndram_dataset import NDRAMDataset | ||
from ndstorage.ndtiff_pyramid_dataset import NDTiffPyramidDataset |
10 changes: 5 additions & 5 deletions
10
python/ndtiff/_superclass.py → python/ndstorage/_superclass.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
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
version_info = (3, 1, 0) | ||
version_info = (0, 1, 0) | ||
__version__ = ".".join(map(str, version_info)) |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
python/ndtiff/ndram_dataset.py → python/ndstorage/ndram_dataset.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
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
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
python/ndtiff/ndtiff_pyramid_dataset.py → python/ndstorage/ndtiff_pyramid_dataset.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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
python/ndtiff/test/data_loading_test.py → python/ndstorage/test/data_loading_test.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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import numpy as np | ||
from ndtiff import Dataset | ||
from ndstorage import Dataset | ||
import os | ||
|
||
|
||
|
2 changes: 1 addition & 1 deletion
2
python/ndtiff/test/test_custom_io.py → python/ndstorage/test/test_custom_io.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
4 changes: 2 additions & 2 deletions
4
python/ndtiff/test/write_speed_test.py → python/ndstorage/test/write_speed_test.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
6 changes: 3 additions & 3 deletions
6
python/ndtiff/test/writing_test.py → python/ndstorage/test/writing_test.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
This file was deleted.
Oops, something went wrong.
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,7 +5,7 @@ | |
long_description = fh.read() | ||
|
||
# extract version | ||
path = path.realpath("ndtiff/_version.py") | ||
path = path.realpath("ndstorage/_version.py") | ||
version_ns = {} | ||
with open(path, encoding="utf8") as f: | ||
exec(f.read(), {}, version_ns) | ||
|
@@ -15,14 +15,14 @@ | |
requirements = f.read().splitlines() | ||
|
||
setuptools.setup( | ||
name="ndtiff", | ||
name="ndstorage", | ||
version=version, | ||
author="Henry Pinkard", | ||
author_email="[email protected]", | ||
description="Python libraries for NDTiff datasets", | ||
description="Python libraries for N-dimensional datasets, including NDTiff", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/micro-manager/NDTiffStorage", | ||
url="https://github.com/micro-manager/NDStorage", | ||
packages=setuptools.find_packages(), | ||
install_requires=requirements, | ||
python_requires=">=3.6", | ||
|