-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
49 lines (48 loc) · 1.35 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
import setuptools
setuptools.setup(
author="Allen Goodman",
author_email="allen.goodman@icloud.com",
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~=7.4.1", "pytest-timeout~=2.1.0"],
"wx": ["wxPython==4.2.0"],
},
install_requires=[
"boto3>=1.12.28",
"centrosome~=1.2.2",
"docutils==0.15.2",
"future>=0.18.2",
"fsspec>=2021.11.0",
"h5py~=3.6.0",
"lxml>=4.6.4",
"matplotlib~=3.1.3",
"numpy~=1.24.4",
"psutil>=5.9.5",
"pyzmq~=22.3.0",
"scikit-image~=0.20.0",
"scipy>=1.9.1,<1.11",
"scyjava>=1.9.1",
"zarr~=2.16.1",
"google-cloud-storage~=2.10.0",
],
license="BSD",
name="cellprofiler-core",
package_data={"cellprofiler_core": ["py.typed"]},
packages=setuptools.find_packages(exclude=["tests"]),
python_requires=">=3.8",
url="https://github.com/CellProfiler/core",
version="5.0.0",
zip_safe=False,
)