forked from stjude/RNAIndel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·31 lines (29 loc) · 990 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
from setuptools import setup, find_packages
version = {}
with open("./rnaindel/version.py") as fp:
exec(fp.read(), version)
setup(
name="rnaindel",
version=version["__version__"],
description="Somatic indel discovery tool for tumor RNA-Seq data",
url="https://github.com/stjude/RNAIndel",
author="Kohei Hagiwara, Liang Ding",
author_email="[email protected], [email protected]",
license="Apache License 2.0",
install_requires=[
"pandas >= 0.23.0",
"scikit-learn >= 0.18.1",
"pysam >= 0.13.0",
],
python_requires=">=3.5.2",
packages=find_packages(exclude=["contrib", "docs", "tests"]),
package_data={
"rnaindel": [
"bambino_lib/bambino-1.0.jar",
"bambino_lib/mysql-connector-java-5.1.10.jar",
"bambino_lib/picard.jar",
"bambino_lib/third_party.jar",
]
},
entry_points={"console_scripts": ["rnaindel=rnaindel.rnaindel:main"]},
)