Revision 6f53c39c4a83deb4fdbfc0b60bc0e124c34ea2fb authored by andrewjpage on 03 December 2014, 10:36:53 UTC, committed by andrewjpage on 03 December 2014, 10:36:53 UTC
1 parent 30f3a10
Raw File
setup.py
#!/usr/bin/env python

from setuptools import setup
import os

version = 'x'
if os.path.exists('../VERSION'):
  version = open('../VERSION').read().strip()

setup(
    name='gubbins',
    version=version,
    description='Frontend to the Gubbins BioInformatics tool',
    author='Andrew J. Page',
    author_email='ap13@sanger.ac.uk',
    url='https://github.com/sanger-pathogens/gubbins/',
    scripts=['scripts/run_gubbins.py','scripts/gubbins_drawer.py'],
    packages=['gubbins'],
    test_suite='nose.collector',
    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",
        "Development Status :: 4 - Beta",
        "Intended Audience :: Science/Research",
        "Topic :: Scientific/Engineering :: Bio-Informatics",
        ],
    install_requires=[
        'Biopython >= 1.59',
        'DendroPy  >= 3.12.0',
        'Reportlab >= 2.5',
        'nose >= 1.3' 
    ],
    license='GPL',
    )
back to top