-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
60 lines (53 loc) · 1.98 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import os
from setuptools import setup
import ReMatCh
def package_files(directory):
paths = []
for (path, _, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
VERSION = ReMatCh.__version__
with open('README.md') as fh:
README = fh.read()
setup(
name='ReMatCh',
version='{}'.format(VERSION),
packages=['ReMatCh',
'ReMatCh.modules'],
package_dir={'ReMatCh': 'ReMatCh'},
package_data={'ReMatCh': package_files('.git') +
['utils/*',
'modules/mlst_schemas/*',
'src/bcftools-1.3.1/bin/*', 'src/bowtie2-2.2.9/bowtie2*', 'src/samtools-1.3.1/bin/*']},
include_package_data=True,
data_files=[('', ['LICENSE'])],
install_requires=[
'biopython'
],
description='Reads mapping against target sequences, checking mapping and consensus sequences production',
long_description=README,
long_description_content_type='text/markdown',
keywords=['reference mapping', 'allele variant calling', 'consensus sequence', 'sequence presence/absence',
'MLST multilocus sequence typing'],
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Environment :: Console',
'Operating System :: Unix',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Medical Science Apps.'
],
url='https://github.com/B-UMMI/ReMatCh',
author='Miguel P. Machado',
author_email='[email protected]',
license='GPL3',
# To use entry_points with .py the first folder cannot have the same name of the script
entry_points={
'console_scripts': [
'rematch.py = ReMatCh.rematch:main'
]
},
python_requires='>=3.4'
)