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
|
#!/usr/bin/python3
from distutils.core import setup
setup(name="biotools",
version='1.2.12',
description="A bunch of bioinformatics utilities.",
long_description="""Accompanies Bart, Rebecca, *et al.* High-throughput genomic sequencing of Cassava Bacterial Blight strains identifies conserved effectors to target for durable resistance. *PNAS Plus*.
Currently depends on `clustalw <ftp://ftp.ebi.ac.uk/pub/software/clustalw2/2.1/>`_ and `BLAST <ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/LATEST/>`_.
You can grab the most current code from `github <https://github.com/sonwell/biotools>`_ or via git
git clone git://github.com/sonwell/biotools.git""",
author="Andrew Kassen",
maintainer="Andrew Kassen",
author_email="atkassen@gmail.com",
maintainer_email="atkassen@gmail.com",
url="https://github.com/sonwell/biotools",
requires=['numpy','matplotlib'],
packages=['biotools', 'biotools.analysis', 'biotools.IO'],
package_dir={'biotools': 'src',
'biotools.analysis': 'src/analysis',
'biotools.IO': 'src/IO'},
scripts=['prok-geneseek'],
keywords='gene prediction, prokaryotes, effectors',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics'
])
|