forked from sanger-pathogens/pymummer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (37 loc) · 1.22 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
41
42
43
44
45
import os
import glob
import shutil
import sys
from setuptools import setup, find_packages
required_progs = ['nucmer', 'show-coords', 'show-snps', 'delta-filter']
found_all_progs = True
print('Checking MUMmer programs found in path:')
for program in required_progs:
if shutil.which(program) is None:
found_all_progs = False
found = ' NOT FOUND'
else:
found = ' OK'
print(found, program, sep='\t')
if not found_all_progs:
print('Cannot install because some programs from the MUMer package not found.', file=sys.stderr)
sys.exit(1)
setup(
name='pymummer',
version='0.11.0',
description='Wrapper for MUMmer',
packages = find_packages(),
author='Martin Hunt, Nishadi De Silva',
author_email='[email protected]',
url='https://github.com/sanger-pathogens/pymummer',
test_suite='nose.collector',
install_requires=['pyfastaq >= 3.10.0'],
tests_require=['nose >= 1.3'],
license='GPLv3',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
)