-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 914 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 914 Bytes
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
27
28
29
30
31
32
from distutils.core import setup
author = "Timon Beck"
authors = [author]
description = 'Segment spherical samples from a phase image ' \
'and evaluate the refractive index'
name = 'DropletQpi'
year = "2021"
setup(
name=name,
author=author,
author_email='timon.beck@mpl.mpg.de',
url='https://github.com/GuckLab/DropletQPI',
include_package_data=True,
license="None",
description=description,
install_requires=["h5py>=2.10.0",
"numpy>=1.17.0",
"matplotlib",
"qpsphere",
"qpimage",
"drymass",
"scikit-image>=0.17.2",
"scipy>=0.12.0",
"pandas",
"openpyxl"
],
python_requires=">=3.6",
keywords=["image analysis", "biology", "microscopy"],
)