-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsetup.py
42 lines (37 loc) · 2.09 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
import setuptools
from io import open
import sys
from subprocess import call
from os import path
from os import mkdir
if sys.version_info[0] < 3:
sys.stdout.write('PhyloPhlAn requires Python 3 or higher. Please update you Python installation')
install_reqs = ["biopython", "dendropy", "matplotlib", "numpy", "pandas", "seaborn"]
setuptools.setup(name='PhyloPhlAn',
version='3.1.1',
author='Francesco Asnicar',
author_email='[email protected]',
url='http://github.com/biobakery/phylophlan',
license='license.txt',
scripts=['phylophlan/phylophlan_write_default_configs.sh'],
packages=setuptools.find_packages(),
package_data={
'phylophlan': [
'phylophlan_substitution_matrices/*',
'phylophlan_substitution_models/*'
]},
entry_points={
'console_scripts': [
'phylophlan = phylophlan.phylophlan:phylophlan_main',
'phylophlan_draw_metagenomic = phylophlan.phylophlan_draw_metagenomic:phylophlan_draw_metagenomic',
'phylophlan_get_reference = phylophlan.phylophlan_get_reference:phylophlan_get_reference',
'phylophlan_assign_sgbs = phylophlan.phylophlan_assign_sgbs:main',
'phylophlan_setup_database = phylophlan.phylophlan_setup_database:phylophlan_setup_database',
'phylophlan_strain_finder = phylophlan.phylophlan_strain_finder:phylophlan_strain_finder',
'phylophlan_write_config_file = phylophlan.phylophlan_write_config_file:phylophlan_write_config_file'
]},
description='Precise phylogenetic analysis of microbial isolates and genomes from metagenomes',
long_description=open('readme.md').read(),
long_description_content_type='text/markdown',
install_requires=install_reqs,
zip_safe=False)