blob: 559c6a22b008af41e3f307e5725444e6f7442e18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} pypy3 )
DISTUTILS_USE_PEP517=pdm-backend
inherit distutils-r1 pypi
DESCRIPTION="Automatically link across pages in MkDoc"
HOMEPAGE="
https://mkdocstrings.github.io/autorefs/
https://github.com/mkdocstrings/autorefs/
https://pypi.org/project/mkdocs-autorefs/
"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~riscv"
RDEPEND="
dev-python/markdown[${PYTHON_USEDEP}]
dev-python/mkdocs[${PYTHON_USEDEP}]
"
distutils_enable_tests pytest
|