forked from biobakery/MetaPhlAn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·43 lines (39 loc) · 2 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
42
43
import setuptools
from setuptools.command.install import install
from io import open
import sys, shutil, os, zipfile, tarfile, subprocess, tempfile, re, time
from urllib.request import urlretrieve
from metaphlan import download_unpack_zip
install_requires = ['numpy', 'h5py', 'biom-format', 'biopython', 'pandas', 'scipy', 'requests', 'dendropy', 'pysam', 'cmseq', 'phylophlan'],
if sys.version_info[0] < 3:
sys.stdout.write('MetaPhlAn requires Python 3 or higher. Please update you Python installation')
setuptools.setup(
name='MetaPhlAn',
version='3.0.14',
author='Francesco Beghini',
author_email='francesco.beghini@unitn.it',
url='http://github.com/biobakery/MetaPhlAn/',
license='LICENSE.txt',
packages=setuptools.find_packages(),
package_data = { 'metaphlan' : [
'metaphlan_databases/*.txt',
'utils/*',
]},
entry_points={
'console_scripts': [
'metaphlan = metaphlan.metaphlan:main',
'strainphlan = metaphlan.strainphlan:main',
'add_metadata_tree.py = metaphlan.utils.add_metadata_tree:main',
'extract_markers.py = metaphlan.utils.extract_markers:main',
'merge_metaphlan_tables.py = metaphlan.utils.merge_metaphlan_tables:main',
'plot_tree_graphlan.py = metaphlan.utils.plot_tree_graphlan:main',
'read_fastx.py = metaphlan.utils.read_fastx:main',
'sample2markers.py = metaphlan.utils.sample2markers:main',
'strain_transmission.py = metaphlan.utils.strain_transmission:main',
]
},
description='MetaPhlAn is a computational tool for profiling the composition of microbial communities (Bacteria, Archaea and Eukaryotes) from metagenomic shotgun sequencing data (i.e. not 16S) with species-level. With the newly added StrainPhlAn module, it is now possible to perform accurate strain-level microbial profiling.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=install_requires
)