26 lines
620 B
Bash
26 lines
620 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=6
|
|
PYTHON_COMPAT=( python2_7 )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Read metadata from Python packages."
|
|
HOMEPAGE="https://importlib-metadata.readthedocs.io"
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
|
|
dev-python/configparser[${PYTHON_USEDEP}]
|
|
dev-python/contextlib2[${PYTHON_USEDEP}]
|
|
dev-python/pathlib2[${PYTHON_USEDEP}]
|
|
>=dev-python/zipp-0.3.2[${PYTHON_USEDEP}]
|
|
"
|
|
DEPEND="${RDEPEND}"
|