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
|
#!/usr/bin/env python3
import setuptools
setuptools.setup(
name='gubbins',
version='2.4.1',
description='Frontend to the Gubbins BioInformatics tool',
author='Andrew J. Page',
author_email='gubbins-help@sanger.ac.uk',
url='https://github.com/sanger-pathogens/gubbins/',
packages=setuptools.find_packages(),
entry_points={
"console_scripts": [
"run_gubbins.py = scripts.run_gubbins:main",
]
},
tests_require=[
"pytest >= 4.6"
],
long_description="""\
Gubbins is a tool for BioInformaticians that takes in a multi
fasta alignment and detects recombination regions. This package provides
a simple front end to the Gubbins tool.
""",
classifiers=[
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
install_requires=[
'biopython >= 1.59',
'dendropy >= 4.0.2'
],
license='GPL'
)
|