File: setup.py

package info (click to toggle)
gubbins 2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 5,252 kB
  • ctags: 736
  • sloc: sh: 8,073; ansic: 4,376; python: 2,259; makefile: 126; cpp: 27
file content (40 lines) | stat: -rwxr-xr-x 1,237 bytes parent folder | download | duplicates (4)
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
#!/usr/bin/env python3

from setuptools import setup
import multiprocessing
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 :: 3",
        "Development Status :: 4 - Beta",
        "Intended Audience :: Science/Research",
        "Topic :: Scientific/Engineering :: Bio-Informatics",
        ],
    install_requires=[
        'biopython >= 1.59',
        'dendropy  >= 4.0.2',
        'reportlab >= 3.0',
        'nose >= 1.3'
    ],
    license='GPL',
    )