forked from CellProfiler/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (45 loc) · 1.27 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
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",
],
extras_require={
"dev": [
"black==19.10b0",
"click>=7.1.2",
"pre-commit==2.2.0",
"sphinx==3.1.2",
"twine==3.1.1",
],
"test": ["pytest==5.4.1"],
"wx": ["wxPython==4.0.7.post2"],
},
install_requires=[
"boto3>=1.12.28",
"centrosome==1.2.0",
"docutils==0.15.2",
"h5py==2.10.0",
"matplotlib>=3.1.3",
"numpy>=1.18.2",
"prokaryote==2.4.2",
"psutil>=5.7.0",
"python-bioformats==4.0.0",
"python-javabridge==4.0.0",
"pyzmq==18.0.1",
"scikit-image>=0.16.2",
"scipy>=1.4.1",
],
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.0.7",
zip_safe=False,
)