-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (32 loc) · 858 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
from setuptools import setup, find_packages
setup(
name = 'stKeep',
version = '0.0.1',
keywords='TME',
description = 'stKeep for processing spatially transcriptomics data',
license = 'MIT License',
url = 'https://github.com/cmzuo11/stKeep',
author = 'cmzuo',
author_email = '[email protected]',
packages = find_packages(),
include_package_data = True,
platforms = 'any',
install_requires = [
'numpy==1.22.4',
'pandas==2.0.3',
'scipy==1.8.1',
'scikit-learn',
'torch==1.13.0',
'tqdm==4.51.0',
'scanpy==1.9.6',
'seaborn',
'matplotlib==3.7.3',
'glob2',
'Pillow==9.5.0',
'anndata==0.9.2',
'argparse==1.1',
'pathlib',
'opencv-python==4.8.1.78',
'torchvision==0.14.0'
],
)