-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (38 loc) · 1.15 KB
/
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
33
34
35
36
37
38
39
40
from setuptools import setup, find_packages
with open("README.rst") as handle:
LONG_DESCRIPTION = handle.read()
setup(
name="rna_cd",
description="RNA contamination detector",
long_description=LONG_DESCRIPTION,
version="0.3.0-dev",
author="Leiden University Medical Center",
author_email="[email protected]",
url="https://github.com/LUMC/rna_cd",
license="AGPLv3+",
packages=find_packages(),
python_requires=">=3.5",
zip_safe=False,
install_requires=[
"click",
"scikit-learn",
"pysam",
"matplotlib",
"joblib"
],
entry_points={
"console_scripts": [
"rna_cd-train = rna_cd.cli:train_cli",
"rna_cd-classify = rna_cd.cli:classify_cli"
]
},
classifiers=[
"License :: OSI Approved :: GNU Affero General Public License v3 or "
"later (AGPLv3+)",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
)