forked from XWangLabTHU/cfDNApipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (23 loc) · 828 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
# -*- coding: utf-8 -*-
"""
Created on Fri Aug 9 11:37:46 2019
@author: zhang
"""
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="cfDNApipe",
version="1.0.4",
author="Wei Zhang, Jiaqi Huang, Shuying He, Juhong Liu, Yu Liu",
author_email="[email protected]",
description="An Intergrated Pipeline For cfDNA Sequencing Data Analysis",
license="Please see LICENSE.txt.",
keywords=["cell free DNA", "WGS", "WGBS", "Fragmentation", "Methylation", "Virus", "SNV", "CNV"],
url="https://xwanglabthu.github.io/cfDNApipe/",
packages=find_packages(),
package_data={"cfDNApipe": ["data/*", "temp/*"]},
long_description=read("README.rst"),
platforms="Linux/Unix",
)