blob: f988f22be4138783135ddf7177cc9a5ba29ac9b6 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
DOCS_BUILDER="sphinx"
PYTHON_COMPAT=( python3_{10..13} )
DOCS_DIR="docs"
inherit distutils-r1 docs pypi
DESCRIPTION="RFC 3986-compliant URI parsing, classification and composition"
HOMEPAGE="
https://github.com/tkem/uritools/
https://pypi.org/project/uritools/
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm64 ~riscv"
distutils_enable_tests pytest
|