forked from jhawkey/IS_mapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.45 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name='ISMapper',
version='0.1.3',
author='Jane Hawkey',
author_email='[email protected]',
packages=['ismap'],
scripts=['scripts/binary_table.py', 'scripts/compiled_table.py', 'scripts/create_genbank_table.py',
'scripts/slurm_ismap.py', 'scripts/create_typing_out.py'],
entry_points={
'console_scripts': ['ismap = ismap.ismap:main']
},
package_dir = {'ismap': 'scripts'},
#package_data={'srst2': ['data/resistance.*']},
url='http://jhawkey.github.io/IS_mapper/',
license='LICENSE.txt',
description='Discovering Insertion Sequences from Short Read Sequence Data',
long_description=('This program is designed to take Illumina'
'sequence data, a query gene (such as an insertion sequence)'
'and a reference genome, either for finding novel positions in,'
'or an assembly where the query is either assembled or broken over'
'contigs.'),
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",
#"biopython == 1.63",
],
)