# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other # Spack Project Developers. See the top-level COPYRIGHT file for details. # # SPDX-License-Identifier: (Apache-2.0 OR MIT) from spack.package import * class PyEte3(PythonPackage): """The Environment for Tree Exploration (ETE) is a Python programming toolkit that assists in the recontruction, manipulation, analysis and visualization of phylogenetic trees (although clustering trees or any other tree-like data structure are also supported). """ homepage = "http://etetoolkit.org/" pypi = "ete3/ete3-3.1.2.tar.gz" maintainers("snehring") license("GPL-3.0-only") version("3.1.2", sha256="4fc987b8c529889d6608fab1101f1455cb5cbd42722788de6aea9c7d0a8e59e9") depends_on("py-setuptools", type="build") depends_on("py-numpy", type=("build", "run")) depends_on("py-pyqt5", type=("build", "run")) depends_on("py-lxml", type=("build", "run")) depends_on("py-six", type=("build", "run"))