view setup.py @ 7:96c8c5cada47 draft

planemo upload for repository https://github.com/COMBAT-TB/confil commit 18a08ba3ab742326c8f60a8566c49652e1b8f4c7
author sanbi-uwc
date Thu, 07 Mar 2019 07:12:34 -0500
parents 2b90d0574ea5
children 5ec97cccb3fe
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.3',
    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,
    install_requires=[
        'click'
    ],
    entry_points={
        'console_scripts': ['confil=confil.confil:confil']
    },
)