-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
52 lines (48 loc) · 1.75 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
#!/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',
'rich'
]
setup(
author='Peter Kruczkiewicz',
author_email='peter.kruczkiewicz@gmail.com',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'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',
'biohansel=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']),
test_suite='tests',
url='https://github.com/phac-nml/biohansel',
version='2.6.1',
zip_safe=False,
)