2023-01-29 14:10:21 -05:00
|
|
|
# Copyright 1999-2023 Gentoo Authors
|
2020-04-28 18:40:36 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
2023-01-29 14:10:21 -05:00
|
|
|
EAPI=8
|
2020-04-28 18:40:36 +02:00
|
|
|
|
2023-01-29 14:10:21 -05:00
|
|
|
DISTUTILS_USE_PEP517=hatchling
|
2023-05-02 00:45:35 +05:00
|
|
|
PYTHON_COMPAT=( python3_{10..11} )
|
2020-04-28 18:40:36 +02:00
|
|
|
|
2023-03-18 21:47:23 +05:00
|
|
|
DOCS_BUILDER=mkdocs
|
|
|
|
|
DOCS_DEPEND=(
|
2020-08-14 19:38:47 +02:00
|
|
|
dev-python/ansi2html
|
|
|
|
|
dev-python/markdown-include
|
|
|
|
|
dev-python/mkdocs-exclude
|
|
|
|
|
dev-python/mkdocs-material
|
2023-03-18 21:47:23 +05:00
|
|
|
)
|
2020-04-28 18:40:36 +02:00
|
|
|
|
2023-03-18 21:47:23 +05:00
|
|
|
inherit distutils-r1 docs pypi
|
2020-04-28 18:40:36 +02:00
|
|
|
|
|
|
|
|
DESCRIPTION="Dev tools for python"
|
2023-03-18 21:47:23 +05:00
|
|
|
HOMEPAGE="
|
|
|
|
|
https://pypi.org/project/devtools/
|
|
|
|
|
https://github.com/samuelcolvin/python-devtools
|
|
|
|
|
"
|
2023-01-29 14:10:21 -05:00
|
|
|
RESTRICT="!test? ( test )"
|
2020-04-28 18:40:36 +02:00
|
|
|
|
|
|
|
|
LICENSE="MIT"
|
2023-07-09 06:39:26 +05:00
|
|
|
KEYWORDS="~amd64"
|
2020-04-28 18:40:36 +02:00
|
|
|
SLOT="0"
|
|
|
|
|
|
2023-03-18 21:47:23 +05:00
|
|
|
RDEPEND="
|
2023-01-29 14:10:21 -05:00
|
|
|
dev-python/asttokens[${PYTHON_USEDEP}]
|
|
|
|
|
dev-python/executing[${PYTHON_USEDEP}]
|
2020-04-28 18:40:36 +02:00
|
|
|
dev-python/pygments[${PYTHON_USEDEP}]
|
2023-03-18 21:47:23 +05:00
|
|
|
"
|
|
|
|
|
BDEPEND="
|
2023-01-29 14:10:21 -05:00
|
|
|
test? (
|
|
|
|
|
dev-python/asyncpg[${PYTHON_USEDEP}]
|
|
|
|
|
dev-python/coverage[${PYTHON_USEDEP}]
|
|
|
|
|
dev-python/multidict[${PYTHON_USEDEP}]
|
|
|
|
|
dev-python/pydantic[${PYTHON_USEDEP}]
|
|
|
|
|
dev-python/pytest-mock[${PYTHON_USEDEP}]
|
|
|
|
|
dev-python/sqlalchemy[${PYTHON_USEDEP}]
|
|
|
|
|
)
|
|
|
|
|
"
|
|
|
|
|
|
|
|
|
|
distutils_enable_tests pytest
|