forked from atlab/scanreader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 920 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python3
from setuptools import setup
long_description = "Python TIFF Stack Reader for ScanImage 5 scans (including multiROI)."
setup(
name='scanreader',
version='0.4.12',
description="Reader for ScanImage 5 scans (including slow stacks and multiROI).",
long_description=long_description,
author='Erick Cobos',
author_email='[email protected]',
license='MIT',
url='https://github.com/atlab/scanreader',
keywords='ScanImage scanreader multiROI 2016b tiff',
packages=['scanreader'],
install_requires=['numpy>=1.12.0', 'tifffile>=2019.2.22'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: MIT License',
'Natural Language :: English'
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
)