-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (32 loc) · 973 Bytes
/
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
from setuptools import setup, find_packages
with open("PYPI.rst", "r") as f:
long_description = f.read()
setup(
name='stereosite',
version='2.2.3',
author='LiuXing',
author_email='[email protected]',
description=('Analysis spatial transcriptomics data'),
long_description=long_description,
license='GPL-3 License',
keywords='spatial cell interaction intensity',
url="https://github.com/STOmics/StereoSiTE",
packages=find_packages(), #['stereosite'], #需要打包的目录列表
include_package_data=True,
platforms='any',
#需要安装的依赖包
install_requires = [
'anndata>=0.8.0',
'scanpy>=1.9.1',
'squidpy>=1.1.2',
'decoupler>=1.4.0',
'pydeseq2>=0.3.6',
'networkx>=3.1',
'tensorly>=0.8.1',
'scikit-learn>=1.2.1',
'torch>=1.11.0',
'igraph>=0.10.4',
'pycirclize>=1.1.0',
'cell2location==0.1.3'
],
)