Skip to content

Commit

Permalink
0.0.6 version draft, added dependency on imagecodecs
Browse files Browse the repository at this point in the history
  • Loading branch information
filippocastelli committed Jul 20, 2021
1 parent c824bfc commit 1016224
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 27 deletions.
2 changes: 1 addition & 1 deletion pyometiff/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from pyometiff.omewriter import OMETIFFWriter
from pyometiff.omexml import OMEXML

__version__ = "0.0.5"
__version__ = "0.0.6"
53 changes: 27 additions & 26 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]",
)

0 comments on commit 1016224

Please sign in to comment.