forked from poseidonchan/TAPE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (23 loc) · 669 Bytes
/
setup.py
File metadata and controls
23 lines (23 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name = 'scTAPE',
version = '1.1.2',
description = 'deep learning tools for bulk RNA-seq deconvolution and gene expression analysis',
author = 'Yanshuo Chen',
author_email = 'poseidonchan@icloud.com',
url = 'https://github.com/poseidonchan/TAPE',
license = 'GPL-3.0 License',
packages = find_packages(),
python_requires='>=3.7',
platforms = 'any',
install_requires = [
'torch>=1.8.0',
'numpy>=1.21',
'pandas>=1.0',
'matplotlib>=3.4',
'anndata>=0.7.6',
'tqdm>=4.6',
'scikit-learn>=0.23',
'seaborn>=0.11'
],
)