-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (29 loc) · 939 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
from setuptools import setup, find_packages
from setuptools.command.build_py import build_py
import glob
import os
import pkg_resources
from polecat import __version__, _program
setup(name='polecat',
version=__version__,
packages=find_packages(),
scripts=["polecat/scripts/Snakefile",
"polecat/scripts/polecat_pipeline.smk",
"polecat/scripts/render_report.py",
"polecat/scripts/polecatfunks.py"],
package_data={"polecat":["data/*"]},
install_requires=[
"biopython>=1.70",
"mako>=1.1.3"
],
description='',
url='https://github.com/COG-UK/polecat',
author='Aine OToole, JT McCrone, Andrew Rambaut',
author_email='[email protected]',
entry_points="""
[console_scripts]
{program} = polecat.command:main
""".format(program = _program),
include_package_data=True,
keywords=[],
zip_safe=False)