view setup.py @ 0:343e38c6798f draft

planemo upload commit 3f94d8852b51fc041ae5ad5a1929cdce302145a0-dirty
author charles_s_test
date Thu, 07 Dec 2017 02:35:46 -0500
parents
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'}
)