
* Add abipy package and dependencies * Add first official release of py-abipy * Ignore files from dependencies during activation
55 lines
2.5 KiB
Python
55 lines
2.5 KiB
Python
##############################################################################
|
|
# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC.
|
|
# Produced at the Lawrence Livermore National Laboratory.
|
|
#
|
|
# This file is part of Spack.
|
|
# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
|
|
# LLNL-CODE-647188
|
|
#
|
|
# For details, see https://github.com/llnl/spack
|
|
# Please also see the LICENSE file for our notice and the LGPL.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU Lesser General Public License (as
|
|
# published by the Free Software Foundation) version 2.1, February 1999.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
|
|
# conditions of the GNU Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
##############################################################################
|
|
from spack import *
|
|
|
|
|
|
class PyPymatgen(PythonPackage):
|
|
"""Python Materials Genomics is a robust materials analysis code that
|
|
defines core object representations for structures and molecules with
|
|
support for many electronic structure codes. It is currently the core
|
|
analysis code powering the Materials Project."""
|
|
|
|
homepage = "http://www.pymatgen.org/"
|
|
url = "https://pypi.io/packages/source/p/pymatgen/pymatgen-4.7.2.tar.gz"
|
|
|
|
version('4.7.2', '9c3a6e8608671c216e4ef89778646fd6')
|
|
version('4.6.2', '508f77fdc3e783587348e93e4dfed1b8')
|
|
|
|
extends('python', ignore='bin/tabulate')
|
|
|
|
depends_on('py-setuptools@18.0:', type='build')
|
|
|
|
depends_on('py-numpy@1.9:', type=('build', 'run'))
|
|
depends_on('py-six', type=('build', 'run'))
|
|
depends_on('py-requests', type=('build', 'run'))
|
|
depends_on('py-pyyaml@3.11:', type=('build', 'run'))
|
|
depends_on('py-monty@0.9.6:', type=('build', 'run'))
|
|
depends_on('py-scipy@0.14:', type=('build', 'run'))
|
|
depends_on('py-pydispatcher@2.0.5:', type=('build', 'run'))
|
|
depends_on('py-tabulate', type=('build', 'run'))
|
|
depends_on('py-spglib@1.9.8.7:', type=('build', 'run'))
|
|
depends_on('py-matplotlib@1.5:', type=('build', 'run'))
|
|
depends_on('py-palettable@2.1.1:', type=('build', 'run'))
|