forked from CellProfiler/core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
47 lines (46 loc) · 1.34 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
import setuptools
setuptools.setup(
author="Allen Goodman",
author_email="[email protected]",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
extras_require={
"dev": [
"sphinx>=3.1.2",
"twine==3.1.1",
],
"test": ["pytest~=7.4.1"],
"wx": ["wxPython==4.1.0"],
},
install_requires=[
"boto3==1.14.23",
"centrosome==1.2.3",
"docutils==0.15.2",
"fsspec==2022.2.0",
"h5py==3.6.0", # Consider 3.2.1 if problems happen
"matplotlib==3.1.3",
"numpy==1.23.1",
"prokaryote==2.4.4",
"psutil==5.7.0",
"python-bioformats==4.1.0",
"python-javabridge==4.0.4",
"pyzmq==22.3.0",
"Pillow==8.3.2",
"scikit-image==0.18.3",
"scipy==1.9.0",
"zarr==2.10.2",
],
license="BSD",
name="cellprofiler-core",
package_data={"cellprofiler_core": ["py.typed"]},
packages=setuptools.find_packages(exclude=["tests"]),
python_requires=">=3.8, <4",
url="https://github.com/CellProfiler/core",
version="4.2.80002",
zip_safe=False,
)