# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
import pypandoc

here = path.abspath(path.dirname(__file__))
exec(open('zoo/version.py').read())

setup(
    name='foo',
    version=__version__,
    description='foo',
    long_description=pypandoc.convert(path.join(here, 'README.md'), 'rst'),
    author='foo',
    author_email='user@email.com',
    classifiers=[
        'Development Status :: 4 - Beta',
        'Intended Audience :: Science/Research',
        'Topic :: Scientific/Engineering :: Bio-Informatics',
        'License :: OSI Approved :: MIT License',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.3',
        'Programming Language :: Python :: 3.4',
        'Programming Language :: Python :: 3.5',
    ],
    packages=find_packages(),
    install_requires=['biopython',
        'pysam>0.10.0.0',
        'pandas',
        'numpy',
        'scipy',
        'matplotlib',
        'python-dateutil',
        'seaborn',
        'nanoplotter>=0.13.1',
        'nanoget>=0.11.0',
        'nanomath>=0.12.0'
        ],
    package_data={'zoo': []},
    package_dir={'zoo': 'zoo'},
    include_package_data=True,
    entry_points={
        'console_scripts': [
            'zoo=zoo.zoo:main',
        ],
    },
