-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
executable file
·32 lines (30 loc) · 983 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
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",
author_email="[email protected]",
license="Apache License 2.0",
install_requires=[
"ssw-py>=1.0.1",
"pandas>=0.23.0",
"scikit-learn>=0.22.0",
"indelpost>=0.0.4",
],
python_requires=">=3.8",
packages=find_packages(exclude=["contrib", "docs", "tests"]),
package_data={
"rnaindel": [
"defaultcaller/bambino-1.0.jar",
"defaultcaller/mysql-connector-java-5.1.10.jar",
"defaultcaller/picard.jar",
"defaultcaller/third_party.jar",
]
},
entry_points={"console_scripts": ["rnaindel=rnaindel.rnaindel:main"]},
)