-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·30 lines (27 loc) · 1.04 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup,find_packages
from dodge import __version__
def readme():
with open('README.md') as f:
return f.read()
setup(name='dodge',
version=__version__,
description='Dynamic Outbreak Detection for Genomic Epidemiology',
long_description=readme(),
classifiers=[
'License :: OSI Approved :: GPLv3',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Intended Audience :: Science/Research',
],
keywords='genomic epidemiology, outbreak detection, foodborne pathogen, genomic surveillance',
url='https://github.com/LanLab/dodge',
author='Michael Payne',
author_email='michael.payne@unsw.edu.au',
license='GPLv3',
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': ['dodge=dodge.dodge:main','dodgedists=dodge.dodgedists:main'],
},
zip_safe=False)