forked from phac-nml/biohansel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (42 loc) · 1.68 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
requirements=['numpy>=1.12.1',
'pandas>=0.20.1',
'pyahocorasick>=1.1.6',
'attrs']
setup_requirements = ['pytest-runner', ]
test_requirements = ['pytest', ]
setup(
author='Peter Kruczkiewicz',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering'
],
description='Subtype microbial whole-genome sequencing (WGS) data using SNV targeting k-mer subtyping schemes.',
entry_points={'console_scripts': ['hansel=bio_hansel.main:main']},
install_requires=requirements,
keywords='Salmonella enterica Heidelberg Enteritidis SNP kmer subtyping Aho-Corasick',
license='Apache Software License 2.0',
long_description=readme,
name='bio_hansel',
package_data={'bio_hansel': ['data/*/*.fasta', 'data/*/*.tsv',]},
packages=find_packages(exclude=['test_*.py', 'tests']),
setup_requires=setup_requirements,
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/phac-nml/biohansel',
version='2.4.0',
zip_safe=False,
)