Files
spack/var/spack/repos/builtin/packages/partitionfinder/package.py
Todd Gamblin eea786f4e8 relicense: replace LGPL headers with Apache-2.0/MIT SPDX headers
- remove the old LGPL license headers from all files in Spack
- add SPDX headers to all files
  - core and most packages are (Apache-2.0 OR MIT)
  - a very small number of remaining packages are LGPL-2.1-only
2018-10-17 14:42:06 -07:00

34 lines
1.3 KiB
Python

# Copyright 2013-2018 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 import *
class Partitionfinder(Package):
"""PartitionFinder is free open source software to select best-fit
partitioning schemes and models of molecular evolution for
phylogenetic analyses."""
homepage = "https://github.com/brettc/partitionfinder"
url = "https://github.com/brettc/partitionfinder/archive/v2.1.1.tar.gz"
version('2.1.1', 'b1b6539f93146c69b967cf92459ae28a')
depends_on('python@2.7.10:2.999', type=('build', 'run'))
depends_on('py-numpy', type=('build', 'run'))
depends_on('py-pandas', type=('build', 'run'))
depends_on('py-pytables', type=('build', 'run'))
depends_on('py-pyparsing', type=('build', 'run'))
depends_on('py-scipy', type=('build', 'run'))
depends_on('py-scikit-learn', type=('build', 'run'))
def install(self, spec, prefix):
mkdirp(prefix.bin)
install_tree('partfinder', prefix.partfinder)
install_tree('timings', prefix.timings)
install('PartitionFinderMorphology.py', prefix.bin)
install('PartitionFinderProtein.py', prefix.bin)
install('PartitionFinder.py', prefix.bin)