- First real commit.

This commit is contained in:
Wim Pomp
2021-06-17 15:24:50 +02:00
parent b6e816e099
commit b91190ffd5
5 changed files with 434 additions and 1 deletions

23
setup.py Normal file
View File

@@ -0,0 +1,23 @@
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="tiffexplore",
packages=["tiffexplore"],
version="2021.06.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'],
)