-
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
5 changed files
with
19 additions
and
30 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
"""Top-level package for napari-split-dataset.""" | ||
"""hdf5/split-dataset file reader for napari""" | ||
|
||
__author__ = """You Wu""" | ||
__author__ = """You Wu @portugueslab""" | ||
__version__ = "0.1.0" | ||
|
||
from ._reader import napari_get_reader | ||
from napari_split_dataset.napari_split_dataset import napari_get_reader |
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,9 +7,6 @@ | |
with open("README.rst") as readme_file: | ||
readme = readme_file.read() | ||
|
||
# with open('HISTORY.rst') as history_file: | ||
# history = history_file.read() | ||
|
||
with open("requirements.txt") as f: | ||
requirements = f.read().splitlines() | ||
|
||
|
@@ -25,13 +22,13 @@ | |
] | ||
|
||
setup( | ||
author="You Wu", | ||
author_email="[email protected]", | ||
author="You Wu @portugueslab", | ||
author_email="[email protected]", | ||
python_requires=">=3.5", | ||
classifiers=[ | ||
"Development Status :: 2 - Pre-Alpha", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.5", | ||
|
@@ -42,8 +39,7 @@ | |
description="hdf5/split-dataset file reader for napari", | ||
extras_require=dict(dev=requirements_dev), | ||
install_requires=requirements, | ||
license="GNU General Public License v3", | ||
# long_description=readme + '\n\n' + history, | ||
license="MIT", | ||
include_package_data=True, | ||
keywords="napari_split_dataset", | ||
name="napari_split_dataset", | ||
|
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,4 +1 @@ | ||
"""Unit test package for napari_split_dataset.""" | ||
from pathlib import Path | ||
|
||
ASSETS_PATH = Path(__file__).parent / "assets" |
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