Files
tiffexplore/setup.py
Wim Pomp 2cfd117cbf - Some support for dng:
- Read SubIFDs and tags, TODO: read image data in SubIFD
  - Read ExifIFDs and tags
- Maximize size of blocks in bar
- Properly read and print srationals
2021-07-14 20:14:54 +02:00

24 lines
692 B
Python

import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="tiffexplore",
packages=["tiffexplore"],
version="2021.07.0",
author="Wim Pomp",
author_email="wimpomp@gmail.com",
description="Explore a tiff structure.",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
install_requires=['numpy', 'tifffile', 'PyQt5'],
scripts=['bin/tiffexplore'],
)