forked from sheffield-bioinformatics-core/periscope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 820 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
from setuptools import setup
from periscope import __version__, _program
setup(
name='periscope',
version=__version__,
packages=['periscope'],
scripts=['periscope/scripts/Snakefile',
'periscope/scripts/search_for_sgRNA_ont.py',
'periscope/scripts/search_for_sgRNA_illumina.py',
'periscope/scripts/variant_expression.py'
],
package_dir={'periscope': 'periscope'},
package_data={'periscope':['resources/*']},
url='',
license='',
author='Matthew Parker',
author_email='[email protected]',
description='periscope searches for and quanifies sgRNAs in SARS-CoV-2',
entry_points="""
[console_scripts]
{program} = periscope.periscope:main
""".format(program=_program),
include_package_data=True,
)