view ecoli_serotyping/setup.py @ 20:210dafd169d9 draft

Uploaded
author jpetteng
date Sun, 07 Jan 2018 14:41:36 -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'
)