-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (26 loc) · 917 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (26 loc) · 917 Bytes
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
from setuptools import setup, find_packages
setup(
name='PathoVar',
version='0.4.1',
description='Pathogenic microorganism variant calling and annotation pipeline',
author='J. Klein; D. Lancour; C. Wake',
author_email='jaklein@bu.edu',
url='https://bitbucket.org/pathovar/pathovar',
packages=find_packages(),
include_package_data=True,
data_files=[('pathovar/visualize', ['pathovar/visualize/template.html'])],
entry_points={
"console_scripts": [
"pathovar-config = pathovar.setup_external_data.__main__:main",
"pathovar-call = pathovar.snp_caller.__main__:main",
"pathovar-annotate = pathovar.snp_annotation.__main__:main",
"pathovar = pathovar.__main__:main"
]
},
zip_safe=False,
install_requires=[
"PyVCF >= 0.6.4",
"beautifulsoup4 >= 4.3.2",
"requests >= 2.1.0"
]
)