-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
29 lines (28 loc) · 950 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
24
25
26
27
28
29
from setuptools import setup
setup(
name="arg_ranker",
packages=['arg_ranker'],
version="3.7.2",
description="Ranking the risk of antibiotic resistance for genomes/metagenomes",
author='An-Ni Zhang',
author_email='[email protected]',
url='https://github.com/caozhichongchong/ARG_Ranker',
keywords=['antibiotic resistance', 'risk', 'one health', 'clinical AMR', 'mobile AMR'],
license='MIT',
include_package_data=True,
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
package_dir={'arg_ranker': 'arg_ranker'},
package_data={'arg_ranker': ['data/*','bin/*','example/*']},
entry_points={'console_scripts': ['arg_ranker = arg_ranker.__main__:main']},
install_requires=[
'pandas',
'argparse',
'glob2',
'statistics',
'biopython'
],
classifiers=[
"Programming Language :: Python :: 3"
]
)