-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (22 loc) · 812 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
# coding=utf-8
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
setup(
name = "cuteFC",
version = "1.0.0",
description = "Regenotyping structural variants through an accurate and efficient force-calling method",
author = "Jiang Tao & Cao Shuqi",
author_email = "tjiang@hit.edu.cn",
url = "https://github.com/tjiangHIT/cuteFC",
license = "MIT",
packages = find_packages("src"),
package_dir = {"": "src"},
data_files = [("", ["LICENSE"])],
scripts=['src/cuteFC/cuteFC'],
# long_description = LONG_DESCRIPTION,
long_description = readme,
long_description_content_type = 'text/markdown',
zip_safe = False,
install_requires = ['scipy', 'pysam', 'Biopython', 'Cigar', 'numpy', 'pyvcf3', 'scikit-learn']
)