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 = "cuteSV",
version = "2.1.1",
description = "Long-read-based human genomic structural variation detection with cuteSV",
author = "Jiang Tao",
author_email = "tjiang@hit.edu.cn",
url = "https://github.com/tjiangHIT/cuteSV",
license = "MIT",
packages = find_packages("src"),
package_dir = {"": "src"},
data_files = [("", ["LICENSE"])],
scripts=['src/cuteSV/cuteSV'],
# 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']
)
|