forked from xierunzhi/Driver2Comm
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 1.2 KB
/
setup.py
File metadata and controls
32 lines (31 loc) · 1.2 KB
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
from setuptools import setup, find_packages
VERSION = '0.0.1'
DESCRIPTION = ('A computational framework for associating cancer cell-intrinsic driver genes with'
' -extrinsic cell-cell communication')
LONG_DESCRIPTION = ('For systematic investigation of the relationship between cancer cell-intrinsic and -extrinsic factors'
', we develop a general computational framework, Driver2Comm, for associating driver genes of '
'cancer cells with CCC in the TME using single-cell transcriptomics data. ')
setup(
name="Driver2Comm",
version=VERSION,
keywords=["scRNA-seq", "cell-cell communication", "cancer driver gene", "tumor microenvironment"],
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
url="https://github.com/xierunzhi",
author="Runzhi Xie, Yuxuan Hu*, Gao Lin*",
author_email="rzxie1998@gmail.com",
maintainer="Runzhi Xie",
maintainer_email="rzxie1998@gmail.com",
packages=find_packages(),
include_package_data=True,
platforms="any",
license="MIT Licence",
install_requires=[
"numpy",
"pandas",
"statsmodels",
"networkx",
"matplotlib",
"scipy"
]
)