view setup.py @ 12:5ec97cccb3fe draft

planemo upload for repository https://github.com/COMBAT-TB/confil commit b1a96c1b50cea70a20d4e606100879da8b6ed1b2
author sanbi-uwc
date Mon, 11 Mar 2019 07:18:34 -0400
parents 2b90d0574ea5
children bbf9ab2ebee7
line wrap: on
line source

from setuptools import find_packages, setup

with open("README.md", "r") as fh:
    long_description = fh.read()

setup(
    name='confil',
    version='0.1.4',
    url='https://github.com/COMBAT-TB/confil',
    description='Contamination filter',
    long_description=long_description,
    long_description_content_type="text/markdown",
    keywords='contamination, filter',
    py_modules=['confil'],
    packages=find_packages(),
    include_package_data=True,
    license="GPLv3",
    classifiers=[
        'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
        'Programming Lavnguage :: Python',
        'Programming Language :: Python :: 3.5',
        'Programming Language :: Python :: 3.6',
        'Programming Language :: Python :: 3.7',
    ],
    install_requires=[
        'click'
    ],
    entry_points={
        'console_scripts': ['confil=confil.confil:confil']
    },
)