-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 727 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (20 loc) · 727 Bytes
1
import setuptoolswith open("README.md", "r") as fh: long_description = fh.read()setuptools.setup( name="tiff2csv", # Replace with your own username version="0.0.4", author="Alexander Hermann", author_email="alexander.hermann@hzg.de", description="A lightweight python package for processing .tif image data files.", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/alhermann/TIFF2Vox.git", packages=setuptools.find_packages(), classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], python_requires='>=3.6',)