-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 696 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(name="microscoper",
version="0.3.1",
description="A simple wrapper for python-bioformats to convert \
.vsi CellSense format to TIFF.",
url="https://www.github.com/pskeshu/microscoper",
author="Kesavan Subburam",
author_email="pskesavan@tifrh.res.in",
packages=["microscoper"],
entry_points={
"console_scripts": [
"microscoper=microscoper.io:run"
]
},
install_requires=["numpy>=1.13.1",
"tifffile>=0.12.1",
"tqdm>=4.11.2",
"python-bioformats>=1.2.0"],
license="MIT",
zip_safe=False)