-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 1.24 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
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='topovelo',
version='0.0.1a1',
packages=find_packages(),
author='Yichen Gu',
author_email='gyichen@umich.edu',
description='topological velocity inference from single-cell spatial transcriptomic data',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'anndata>=0.8.0',
'hnswlib>=0.6.2',
'igraph>=0.10.4',
'ipywidgets',
'jupyter',
'loess>=2.1.2',
'matplotlib>=3.3.0, <=3.7.3', # to make sure scvelo setting works
'memory_profiler>=0.61.0',
'numba>=0.41.0',
'numpy>=1.17.0, <=1.23.5', # higher versions have issues with scvelo due to creating a nested array with list of array with different lengths
'pandas>=0.23.0, <=1.5.3', # to make sure scvelo plot works
'pynndescent>=0.5.7',
'scanpy>=1.5.0',
'scikit-learn>=0.20.0',
'scipy>=1.13.0',
'scvelo>=0.2.3, <=0.2.5',
'seaborn>=0.10.0',
'torch>=1.8.0',
'torch_geometric>=2.0.4',
'tqdm<=4.62.3',
'umap-learn>=0.3.10',
]
)