2024-04-13 19:03:07 -04:00
|
|
|
# Copyright 2022-2024 Gentoo Authors
|
2022-12-16 15:22:36 +01:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
|
|
EAPI=8
|
|
|
|
|
|
2024-04-13 19:03:07 -04:00
|
|
|
PYTHON_COMPAT=( python3_{10..12} )
|
2022-12-16 15:22:36 +01:00
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
2024-04-13 19:03:07 -04:00
|
|
|
PYPI_PN="fire"
|
|
|
|
|
inherit distutils-r1 pypi
|
2022-12-16 15:22:36 +01:00
|
|
|
|
|
|
|
|
DESCRIPTION="Library for automatically generating command line interfaces from Python objects"
|
|
|
|
|
HOMEPAGE="https://pypi.org/project/python-fire/"
|
|
|
|
|
|
|
|
|
|
LICENSE="Apache-2.0"
|
|
|
|
|
SLOT="0"
|
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
|
|
|
|
|
|
RDEPEND="
|
|
|
|
|
dev-python/six
|
|
|
|
|
dev-python/termcolor
|
|
|
|
|
"
|
2024-04-13 19:03:07 -04:00
|
|
|
DEPEND="
|
|
|
|
|
${RDEPEND}
|
|
|
|
|
test? (
|
|
|
|
|
dev-python/hypothesis
|
|
|
|
|
dev-python/mock
|
|
|
|
|
dev-python/pytest-asyncio
|
|
|
|
|
)
|
|
|
|
|
"
|
2022-12-16 15:22:36 +01:00
|
|
|
|
|
|
|
|
distutils_enable_tests pytest
|