-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
executable file
·32 lines (29 loc) · 1.17 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
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
exec(open('graftm/version.py').read()) # loads __version__
setup(name='graftm',
version=__version__,
author='Joel Boyd, Ben Woodcroft',
description='GraftM is a pipeline used for identifying and classifying marker gene reads from metagenomic datasets',
long_description=readme,
description_content_type="text/markdown",
long_description_content_type="text/markdown",
license='GPL3+',
keywords="",
packages=find_packages(exclude='docs'),
install_requires=('biopython >=1.64',
'biom-format >=2.1.4',
'extern >=0.0.4',
'taxtastic >=0.5.4',
'bird_tool_utils >= 0.2.17',
'DendroPy >= 4.1.0',
'pyyaml', # Possibly these three not needed, maybe taxtastic now fixed.
'fastalite',
'jinja2'),
url='http://geronimp.github.io/graftM',
scripts=['bin/graftM'],
data_files=[
('share', ['share/18S.hmm']),
],
)