-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
56 lines (55 loc) · 2.51 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
44
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import setup, find_packages
setup(
name='phylofisher',
version='1.2.13',
packages=find_packages(),
scripts={'phylofisher/fisher.py',
'phylofisher/config.py',
'phylofisher/working_dataset_constructor.py',
'phylofisher/forest.py',
'phylofisher/matrix_constructor.py',
'phylofisher/matrix_constructor.smk',
'phylofisher/informant.py',
'phylofisher/apply_to_db.py',
'phylofisher/install_deps.py',
'phylofisher/select_taxa.py',
'phylofisher/select_orthologs.py',
'phylofisher/sgt_constructor.py',
'phylofisher/sgt_constructor.smk',
'phylofisher/prep_final_dataset.py',
'phylofisher/utilities/purge.py',
'phylofisher/utilities/build_database.py',
'phylofisher/utilities/fast_site_remover.py',
'phylofisher/utilities/mammal_modeler.py',
'phylofisher/utilities/bipartition_examiner.py',
'phylofisher/utilities/fast_taxa_remover.py',
'phylofisher/utilities/aa_comp_calculator.py',
'phylofisher/utilities/aa_recoder.py',
'phylofisher/utilities/taxon_collapser.py',
'phylofisher/utilities/genetic_code_examiner.py',
'phylofisher/utilities/heterotachy.py',
'phylofisher/utilities/random_resampler.py',
'phylofisher/utilities/astral_runner.py',
'phylofisher/utilities/rtc_binner.py',
'phylofisher/utilities/backup_restoration.py',
'phylofisher/utilities/explore_database.py',
'phylofisher/utilities/nucl_matrix_constructor.py',
'phylofisher/utilities/gfmix_runner.py',
'phylofisher/utilities/gfmix_mammal.smk',
'phylofisher/gfmix.yaml',
'phylofisher/mammal.yaml',
'phylofisher/prequal.yaml',
'phylofisher/mafft.yaml',
'phylofisher/divvier.yaml',
'phylofisher/trimal.yaml',
'phylofisher/raxml.yaml',
'phylofisher/raxml-ng.yaml',
'phylofisher/bmge.yaml',
},
url='https://github.com/TheBrownLab/PhyloFisher',
license='MIT',
author='David Zihala',
author_email='zihaladavid@gmail.com',
description='PhyloFisher is a software package for the creation, analysis, and visualization of phylogenomic '
'datasets that consist of protein sequences from eukaryotic organisms.'
)