-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
34 lines (32 loc) · 940 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
30
31
32
33
34
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
setup(
name="mgefinder",
version='1.0.6',
description='A toolbox for identifying mobile genetic element (MGE) insertions from short-read sequencing data of bacterial isolates.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/bhattlab/MGEfinder',
author="Matt Durrant",
author_email="[email protected]",
license="MIT",
packages=find_packages(),
include_package_data=True,
install_requires=[
'click==7.0',
'pandas==0.25.3',
'biopython==1.75',
'pysam==0.15.3',
'editdistance',
'scipy==1.4.0',
'networkx==2.4',
'tqdm==4.40.2'
],
zip_safe=False,
entry_points = {
'console_scripts': [
'mgefinder = mgefinder.main:cli'
]
}
)