0
|
1 try:
|
|
2 from setuptools import setup
|
|
3 except ImportError:
|
|
4 from distutils.core import setup
|
|
5
|
|
6 setup(
|
|
7 name='ectyper',
|
|
8 version='0.0.8',
|
|
9 description='E. coli serotyping',
|
|
10 url='https://github.com/phac-nml/ecoli_serotyping',
|
|
11 author='Camille La Rose, Chad Laing, Sam Sung',
|
|
12 author_email='claro100@uottawa.ca, chad.laing@canada.ca, sam.sung@canada.ca',
|
|
13 license='MIT',
|
|
14 scripts=['bin/ectyper'],
|
|
15 packages=['ectyper'],
|
|
16 package_data={'ectyper': ['Data/*']},
|
|
17 zip_safe=False,
|
|
18 test_suite='nose.collector'
|
|
19 ) |