-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
58 lines (54 loc) · 1.23 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
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
from setuptools import setup, find_packages
__version__ = "0.0.0"
exec(open("pysmFISH/_version.py").read())
setup(
name="pysmFISH",
version=__version__,
packages=find_packages(),
include_package_data=True,
install_requires=[
"Click",
"dask",
"dask-jobqueue",
"python-json-logger",
"scikit-learn",
"scipy",
"scikit-image",
"zarr",
"sympy",
"Cython",
"nd2reader", # pims based: https://github.com/rbnvrw/nd2reader
"pynndescent",
# "snappy",
"python-snappy",
"pyarrow",
"openpyxl",
"napari",
"papermill",
"pandas",
"bokeh",
"ipykernel",
"asyncssh",
"jupyter-server-proxy",
"ripleyk",
"stardist",
"cellpose",
"loompy",
"numpy_groupies",
"tensorflow"
],
entry_points="""
[console_scripts]
""",
# metadata
author="Simone Codeluppi",
author_email="simone.codeluppi@ki.se",
description="pipeline for spatial rna mapping",
license="MIT",
url="",
)
# dask[complete]=2021.07.0
# 'ctoolz',
# 'scikit-image==0.17.2'
# python -m pip install 'fsspec>=0.3.3'