forked from raphael-group/CalicoST
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 957 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
import setuptools
setuptools.setup(
name='calicost',
version='v1.0.0',
python_requires='>=3.8',
packages=['calicost'],
package_dir={'': 'src'},
author='Cong Ma',
author_email='[email protected]',
description='Allele-specific CNAs and spatial cancer clone inference',
long_description='CalicoST infers allele-specific copy number aberrations and cancer clones in spatially resolved transcriptomics data',
url='https://github.com/raphael-group/CalicoST',
install_requires=[
'numpy',
'scipy',
'pandas',
'scikit-learn',
'scanpy',
'anndata',
'numba',
'tqdm',
'statsmodels',
'networkx',
'matplotlib',
'seaborn',
'pysam',
'ete3',
'ipykernel'
],
include_package_data=True
)