view setup.py @ 3:62f8b9e226c2 draft default tip

planemo upload commit 9b152b4a900a8cd70df992da881c7e3fa00d4e4c-dirty
author charles_s_test
date Thu, 21 Dec 2017 11:06:32 -0500
parents 343e38c6798f
children
line wrap: on
line source


from setuptools import setup

setup(
    name = "seqsero2",
    version = "2.0",
    author = "DengLab",
    author_email = "seqsero@gmail.com",
    description = ("Serotyping for Salmonella."),
    license = "GPL-2.0",
    keywords = "salmonella",
    url = "https://github.com/charesredhat/SeqSero2",
    packages=['seqsero2'],
    scripts=['scripts/SeqSero2.py'],
     entry_points={
        'console_scripts': ['SeqSero2 = seqsero2.SeqSero2:main']
    },
    package_dir = {'seqsero2': 'scripts'}
)