forked from cov-lineages/pangolin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (40 loc) · 1.52 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
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
import glob
import os
import pkg_resources
# Note: the _program variable is set in __init__.py.
# it determines the name of the package/final command line tool.
from pangolin import __version__, _program
setup(name='pangolin',
version=__version__,
packages=find_packages(),
scripts=['pangolin/scripts/assign_query_file.smk',
'pangolin/scripts/assign_query_lineage.smk',
'pangolin/scripts/prepare_package_data.smk',
'pangolin/scripts/Snakefile',
'pangolin/scripts/assign_lineage.py',
'pangolin/scripts/lineage_finder.py',
'pangolin/scripts/utils.py',
'pangolin/scripts/all_snps.py',
'pangolin/scripts/prepare_package_data.smk',
'pangolin/scripts/get_masked_representatives.py',
'pangolin/scripts/report_classes.py',
'pangolin/scripts/report_results.py'
],
install_requires=[
"biopython>=1.70",
"dendropy>=4.4.0",
"pytools==2020.1",
'pandas==1.0.1'
],
description='hcov-2019 subtyping command line tool',
url='https://github.com/hCov-2019/pangolin',
author='Aine OToole and JT McCrone',
author_email='[email protected]',
entry_points="""
[console_scripts]
{program} = pangolin.command:main
""".format(program = _program),
include_package_data=True,
keywords=[],
zip_safe=False)