-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
31 lines (27 loc) · 968 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
import shutil
if shutil.which("gramtools") is None:
raise RuntimeError("Please install gramtools. Cannot continue")
with open("requirements.txt") as f:
install_requires = [x.rstrip() for x in f]
setup(
name="bio-minos",
version="0.12.5",
description="Variant call adjudication",
packages=find_packages(),
package_data={"minos": ["test_data_files/*"]},
author="Martin Hunt",
author_email="mhunt@ebi.ac.uk",
url="https://github.com/iqbal-lab-org/minos",
test_suite="nose.collector",
tests_require=["pytest"],
entry_points={"console_scripts": ["minos = minos.__main__:main"]},
install_requires=install_requires,
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
],
)