Mercurial > repos > jpayne > seqsero_v2
view SeqSero2/setup.py @ 8:77d3edd25de7
planemo upload
author | jpayne |
---|---|
date | Fri, 07 Jun 2019 16:16:25 -0400 |
parents | b82e5f3c9187 |
children |
line wrap: on
line source
from distutils.core 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/CFSAN-Biostatistics/SeqSero2", packages=['seqsero2'], scripts=['scripts/SeqSero2.py'], entry_points={ 'console_scripts': ['SeqSero2 = seqsero2.SeqSero2:main'] }, package_dir = {'seqsero': 'scripts'} )