-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 879 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name='DeltaTopic',
packages=find_packages(),
author='Yichen Zhang',
version='0.1.0',
description="Packages to implement BALSAM and DeltaTopic as described in the paper: Unraveling dynamically-encoded latent transcriptomic patterns in pancreatic cancer cells by topic modelling",
url="https://github.com/causalpathlab/deltaTopic",
entry_points={'console_scripts':
['BALSAM = DeltaTopic.run.BALSAM:main',
'DeltaTopic = DeltaTopic.run.DeltaTopic:main']
},
install_requires=['pandas==1.4.1',
'torch==2.0.0',
'h5py==3.6.0',
'numpy==1.21.0',
'anndata==0.7.8',
'pytorch_lightning==1.9.0',
'scanpy==1.9.3',
'scipy==1.8.0']
)