-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
21 lines (19 loc) · 1.01 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import setuptools
from setuptools.command.install import install
from io import open
import os
install_requires = ["numpy", "pandas", "scipy"]
setuptools.setup(
name='panphlan',
version='3.1',
author='Leonard Dubois',
author_email='[email protected]',
url='http://github.com/SegataLab/panphlan/',
packages = setuptools.find_packages(),
package_dir = {'panphlan' : '' },
scripts=['panphlan_map.py', 'panphlan_profiling.py', 'panphlan_download_pangenome.py', 'misc.py'],
long_description_content_type='text/markdown',
long_description=open('README.md').read(),
description='PanPhlAn is a strain-level metagenomic profiling tool for identifying the gene composition and *in-vivo* transcriptional activity of individual strains in metagenomic samples. PanPhlAn’s ability for strain-tracking and functional analysis of unknown pathogens makes it an efficient tool for culture-free infectious outbreak epidemiology and microbial population studies.',
install_requires=install_requires
)