comparison ecoli_serotyping/setup.py @ 0:7c687720c9e9 draft

Uploaded
author jpetteng
date Fri, 05 Jan 2018 09:17:33 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:7c687720c9e9
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 )