Mercurial > repos > jpetteng > ectyper
view ecoli_serotyping/setup.py @ 15:be49d620d648 draft
Deleted selected files
| author | jpetteng |
|---|---|
| date | Sat, 06 Jan 2018 14:16:40 -0500 |
| parents | 7c687720c9e9 |
| children |
line wrap: on
line source
try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='ectyper', version='0.0.8', description='E. coli serotyping', url='https://github.com/phac-nml/ecoli_serotyping', author='Camille La Rose, Chad Laing, Sam Sung', author_email='claro100@uottawa.ca, chad.laing@canada.ca, sam.sung@canada.ca', license='MIT', scripts=['bin/ectyper'], packages=['ectyper'], package_data={'ectyper': ['Data/*']}, zip_safe=False, test_suite='nose.collector' )
