-
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
4 changed files
with
38 additions
and
25 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.""" | ||
|
||
__author__ = """You Wu""" | ||
__version__ = '0.1.0' | ||
__version__ = "0.1.0" | ||
|
||
from ._reader 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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
from setuptools import setup, find_packages | ||
import os | ||
|
||
with open('README.rst') as readme_file: | ||
with open("README.rst") as readme_file: | ||
readme = readme_file.read() | ||
|
||
# with open('HISTORY.rst') as history_file: | ||
|
@@ -17,38 +17,42 @@ | |
with open("requirements_dev.txt") as f: | ||
requirements_dev = f.read().splitlines() | ||
|
||
setup_requirements = ['pytest-runner', ] | ||
setup_requirements = [ | ||
"pytest-runner", | ||
] | ||
|
||
test_requirements = ['pytest>=3', ] | ||
test_requirements = [ | ||
"pytest>=3", | ||
] | ||
|
||
setup( | ||
author="You Wu", | ||
author_email='[email protected]', | ||
python_requires='>=3.5', | ||
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)', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
"Development Status :: 2 - Pre-Alpha", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
], | ||
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, | ||
include_package_data=True, | ||
keywords='napari_split_dataset', | ||
name='napari_split_dataset', | ||
packages=find_packages(include=['napari_split_dataset', 'napari_split_dataset.*']), | ||
keywords="napari_split_dataset", | ||
name="napari_split_dataset", | ||
packages=find_packages(include=["napari_split_dataset", "napari_split_dataset.*"]), | ||
setup_requires=setup_requirements, | ||
test_suite='tests', | ||
test_suite="tests", | ||
tests_require=test_requirements, | ||
url='https://github.com/portugueslab/napari_split_dataset', | ||
version='0.1.0', | ||
url="https://github.com/portugueslab/napari_split_dataset", | ||
version="0.1.0", | ||
zip_safe=False, | ||
) |
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