-
Notifications
You must be signed in to change notification settings - Fork 66
/
setup.py
34 lines (32 loc) · 1.27 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name='srst2',
version='0.2.0',
author='Kathryn Holt',
author_email='[email protected]',
packages=['srst2'],
scripts=['scripts/getmlst.py', 'scripts/slurm_srst2.py'],
entry_points={
'console_scripts': ['srst2 = srst2.srst2:main']
},
package_dir = {'srst2': 'scripts'},
package_data={'srst2': ['data/resistance.*']},
url='http://katholt.github.io/srst2/',
license='LICENSE.txt',
description='Short Read Sequence Typing for Bacterial Pathogens',
long_description=('This program is designed to take Illumina'
'sequence data, a MLST database and/or a database'
'of gene sequences (e.g. resistance genes, virulence'
'genes, etc) and report the presence of STs and/or'
'reference genes.'),
install_requires=[
# Although we depend on scipy, which depends on numpy, we don't
# specify the dependencies here because they don't play well with
# any Python installing system, such as pip or easy_install.
# So we assume the user has already installed the dependencies
# themselves.
#"numpy >= 1.7.1",
#"scipy >= 0.12.0",
],
)