-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
32 lines (24 loc) · 875 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
"""
2021.5.21
@author: Wei Zhang, Hanwen Xu
E-mail: w-zhang16@mails.tsinghua.edu.cn, hw-xu16@mails.tsinghua.edu.cn
"""
from setuptools import setup, find_packages
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="ARIC",
version="1.0.1",
keywords=("pip", "ARIC"),
description="ARIC: Accurate and robust inference of cell type proportions from bulk gene expression or DNA methylation data",
license="GPL V3",
url="https://xwanglabthu.github.io/ARIC/",
author="Wei Zhang, Hanwen Xu",
author_email="w-zhang16@mails.tsinghua.edu.cn, xuhw20@mails.tsinghua.edu.cn",
packages=find_packages(),
include_package_data=True,
platforms="any",
long_description=read("README.rst"),
install_requires=["numpy", "tqdm", "scipy", "scikit-learn", "statsmodels", "pandas"],
)