-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
26 lines (24 loc) · 1.12 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
from setuptools import setup,find_packages
setup(
name='SpatialScope', # 应用名
version='0.0.1', # 版本号
description='A unified approach for integrating spatial and single-cell transcriptomics data by leveraging deep generative models',
url='https://github.com/YangLabHKUST/SpatialScope',
author='Xiaomeng Wan (xwanaf@connect.ust.hk), Jiashun Xiao (jxiaoae@connect.ust.hk)',
license='GPLv3',
packages=find_packages(),
scripts=['src/Cell_Type_Identification.py','src/Nuclei_Segmentation.py', 'src/Singlet_Doublet_Classification.py', 'src/Decomposition.py','src/Train_scRef.py'],
include_package_data=True, # 启用清单文件MANIFEST.in
exclude_package_date={'':['.gitignore']},
install_requires = ['scanpy',
'squidpy',
'stardist',
'tensorflow',
'qpsolvers',
'torch',
'scikit-learn',
'pandas',
'matplotlib',
'scipy',
'ray']
)