-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.0.6 version draft, added dependency on imagecodecs
- Loading branch information
1 parent
c824bfc
commit 1016224
Showing
2 changed files
with
28 additions
and
27 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
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,29 +5,30 @@ | |
long_description = fh.read() | ||
|
||
setup( | ||
name="pyometiff", | ||
version=__version__, | ||
description="Read and Write OME-TIFFs in Python", | ||
packages=find_packages(exclude=("tests",)), | ||
# py_modules = ["omereader", "omewriter", "omexml"], | ||
# package_dir = {"": "pyometiff"}, | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", | ||
# "Operating System :: Os Independent", | ||
], | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
install_requires=["numpy", | ||
"tifffile>2020.10.1", | ||
"lxml"], | ||
extras_require={ | ||
"dev": ["pytest>3.7","mock"], | ||
}, | ||
url="https://github.com/filippocastelli/pyometiff", | ||
author="Filippo Maria Castelli", | ||
author_email="[email protected]", | ||
) | ||
name="pyometiff", | ||
version=__version__, | ||
description="Read and Write OME-TIFFs in Python", | ||
packages=find_packages(exclude=("tests",)), | ||
# py_modules = ["omereader", "omewriter", "omexml"], | ||
# package_dir = {"": "pyometiff"}, | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", | ||
# "Operating System :: Os Independent", | ||
], | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
install_requires=["numpy", | ||
"tifffile>2020.10.1", | ||
"imagecodecs", | ||
"lxml"], | ||
extras_require={ | ||
"dev": ["pytest>3.7", "mock"], | ||
}, | ||
url="https://github.com/filippocastelli/pyometiff", | ||
author="Filippo Maria Castelli", | ||
author_email="[email protected]", | ||
) |