-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
23 lines (20 loc) · 1009 Bytes
/
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
#!/usr/bin/env python
from shigatyper import __version__
from setuptools import setup
setup(name='ShigaTyper',
version=__version__,
description='Shigella serotype prediction tool',
long_description=open('README.md').read(),
author='Yun Wu, Henry Lau, Theresa Lee, David Lau, Justin Payne',
maintainer='Justin Payne',
maintainer_email='[email protected]',
url='https://github.com/CFSAN-Biostatistics/shigatyper',
packages=['shigatyper'],
data_files = [('resources', ['shigatyper/resources/ShigellaRef5.fasta','shigatyper/resources/ShigellaRef5.fasta.fai','shigatyper/resources/ShigellaRef5.mmi',])],
include_package_data = True,
license='USG work product released into the public domain',
python_requires=">=3.7",
install_requires=['pandas>=0.24',],
entry_points=dict(console_scripts=['shigatyper = shigatyper.shigatyper:main',])
)