forked from 3d-pli/SLIX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
executable file
·45 lines (43 loc) · 1.05 KB
/
setup.cfg
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
33
34
35
36
37
38
39
40
41
42
43
44
45
[metadata]
name = SLIX
version = 2.4.2
author = Jan Andre Reuter, Miriam Menzel
author_email = [email protected], [email protected]
url = https://github.com/3d-pli/SLIX
description = SLIX allows an automated evaluation of SLI measurements and generates different parameter maps.
license_file = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
appdirs
tifffile
numpy
nibabel
h5py
pillow
numba
matplotlib
tqdm
scipy
imagecodecs
tests_require =
pytest
flake8
pytest-cov
python_requires =
>= 3.6
[options.entry_points]
console_scripts =
SLIXParameterGenerator = SLIX._cmd.ParameterGenerator:main
SLIXLineplotParameterGenerator = SLIX._cmd.LineplotParameterGenerator:main
SLIXVisualizeParameter = SLIX._cmd.VisualizeParameter:main
SLIXCluster = SLIX._cmd.Cluster:main