https://github.com/damurdock/SIDR
Raw File
Tip revision: 37d56e54446977a7d98a9c6b24f14b856e48abb6 authored by Duncan Murdock on 10 August 2018, 03:08:27 UTC
increment version (again)
Tip revision: 37d56e5
setup.py
import os
from setuptools import setup


setup(
    name="SIDR",
    version="0.0.2a2",
    author="Duncan Murdock",
    author_email="me@duncanmurdock.name",
    description=("Sequence Idenification using Decision tRees; a tool to classify DNA reads using machine learning models."),
    license="MIT",
    keywords="console tool bioinformatics",
    url="https://github.com/damurdock/SIDR",
    packages=['sidr', 'tests'],
    classifiers=[
        "Development Status :: 3 - Alpha",
        'Environment :: Console',
        "Topic :: Scientific/Engineering :: Bio-Informatics",
        "License :: OSI Approved :: MIT License",
        "Intended Audience :: Science/Research",
    ],
    install_requires=["NumPy<=1.14.5", "SciPy", "pysam>=0.8.1", "BioPython", "scikit-learn", "click", "pandas"],
    long_description=open("README.rst").read(),
    entry_points={
        'console_scripts': [
            'sidr = sidr.cli:cli',
        ],
    })
back to top