-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
29 lines (28 loc) · 868 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
import glob
from setuptools import setup, find_packages
setup(
name='seroba',
version='1.0.3',
description='SEROBA: Serotyping for illumina reads',
packages = find_packages(),
author='Lennard Epping',
author_email='[email protected]',
url='https://github.com/sanger-pathogens/seroba',
scripts=glob.glob('scripts/*'),
test_suite='nose.collector',
tests_require=['nose >= 1.3'],
install_requires=[
'ariba >= 2.9.1',
'pymummer==0.10.3',
'PyYAML>=3.12',
'biopython>=1.68',
'pyfastaq>=3.15.0'
],
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)',
],
)