-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (41 loc) · 879 Bytes
/
setup.py
File metadata and controls
44 lines (41 loc) · 879 Bytes
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
from setuptools import setup, find_packages
__version__ = "0.13.0"
setup(
name="FISHscale",
python_requires ='>=3.7', #open3d does not work in python 3.10
version=__version__,
packages=find_packages(),
install_requires=[
'loompy',
'numpy',
'scikit-learn',
'scipy',
'networkx',
#'sklearn', outdated
'tqdm',
'umap-learn',
'torch',
'torchvision',
'pytorch-lightning',
'pandas',
'pint',
'pyarrow',
'fastparquet',
'annoy',
#'geopandas',
'shapely',
'numba',
'h5py',
'ripleyk',
'scikit-image',
'dask[distributed]',
'pyro-ppl',
'scvi-tools',
'diameter-clustering'
],
author="Linnarsson Lab",
authors_email=["lars.borm@ki.se","alejandro.mossi.albiach@ki.se"],
description="Pipeline for large smFISH data",
license="MIT",
url="https://github.com/linnarsson-lab/FISHscale",
)