forked from iqbal-lab-org/minos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 939 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
33
34
35
import glob
from setuptools import setup, find_packages
setup(
name='bio-minos',
version='0.5.0',
description='Variant call adjudication',
packages = find_packages(),
author='Martin Hunt',
author_email='[email protected]',
url='https://github.com/iqbal-lab-org/minos',
scripts=glob.glob('scripts/*'),
test_suite='nose.collector',
tests_require=['nose >= 1.3'],
install_requires=[
'biopython',
'cluster_vcf_records >= 0.9.1',
'gramtools',
'matplotlib',
'pandas',
'pyfastaq >= 3.14.0',
'pymummer >= 0.11.0',
'pysam >= 0.12',
'scipy >= 1.0.0',
'seaborn',
],
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: MIT License',
],
)