forked from metaspace2020/Lithops-METASPACE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 1.02 KB
/
setup.py
File metadata and controls
29 lines (27 loc) · 1.02 KB
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
from setuptools import setup, find_packages
setup(name='Lithops-METASPACE',
version='1.0.0',
description='Lithops-powered METASPACE annotation pipeline',
url='https://github.com/metaspace2020/Lithops-METASPACE',
packages=find_packages(),
install_requires=[
"s3fs",
"boto3",
"lithops==2.2.16",
# pandas version should match the version in the runtime to ensure data generated locally can be unpickled
# in Lithops actions
"pandas==1.1.3",
"pyarrow==1.0.1",
"scipy==1.5.3",
"pyImagingMSpec==0.1.4",
"cpyImagingMSpec==0.3.2",
"pyMSpec==0.1.2",
"cpyMSpec==0.3.5",
"pyimzML==1.4.1",
"requests==2.22.0",
"msgpack==0.6.2",
"msgpack-numpy==0.4.4.3",
"pypng==0.0.19", # 0.0.20 introduced incompatible API changes
"metaspace2020", # Only needed for experiment notebooks
"psutil", # Only needed for experiment notebooks
])