-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (44 loc) · 1.65 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import exists, dirname, realpath
from setuptools import setup, find_packages
import sys
maintainer = u"Paul Müller"
maintainer_email = "dev@craban.de"
description = 'Fit and superimpose shapes from different imaging modalities'
name = 'impose'
year = "2020"
sys.path.insert(0, realpath(dirname(__file__))+"/"+name)
from _version import version # noqa: E402
setup(
name=name,
maintainer=maintainer,
maintainer_email=maintainer_email,
url='https://github.com/GuckLab/impose',
version=version,
packages=find_packages(),
package_dir={name: name},
include_package_data=True,
license="GPL v3",
description=description,
long_description=open('README.rst').read() if exists('README.rst') else '',
install_requires=["czifile==2019.7.2", # bc cgohlke and used for signature
"bmlab==0.6.1",
"h5py>=3.11.0",
"imageio", # open image files
"numpy>=1.17.0",
"pyqt6>=6.2.0",
"pyqtgraph==0.13.7",
"scikit-image>=0.17.2",
"scipy>=0.12.0", # compute size of polygon shape
"tifffile==2024.5.10",
],
python_requires=">=3.9",
keywords=["image analysis", "biology", "microscopy"],
classifiers=['Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Visualization',
'Intended Audience :: Science/Research',
],
platforms=['ALL'],
)