mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Shaoyu Tseng <shaoyu0209@tuta.io>
36 lines
1.1 KiB
Bash
36 lines
1.1 KiB
Bash
# Copyright 2021-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{8..10} )
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="A simple sentence mining tool written in PyQt5"
|
|
HOMEPAGE="https://github.com/FreeLanguageTools/ssmtool/ https://pypi.org/project/ssmtool/"
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND="
|
|
dev-python/PyQt5[${PYTHON_USEDEP}]
|
|
dev-python/simplemma[${PYTHON_USEDEP}]
|
|
dev-python/beautifulsoup4[${PYTHON_USEDEP}]
|
|
dev-python/lxml[${PYTHON_USEDEP}]
|
|
dev-python/flask[${PYTHON_USEDEP}]
|
|
dev-python/flask-sqlalchemy[${PYTHON_USEDEP}]
|
|
dev-python/bidict[${PYTHON_USEDEP}]
|
|
dev-python/pystardict[${PYTHON_USEDEP}]
|
|
dev-python/pymorphy2[${PYTHON_USEDEP}]
|
|
dev-python/pymorphy2-dicts-ru[${PYTHON_USEDEP}]
|
|
dev-python/playsound[${PYTHON_USEDEP}]
|
|
dev-python/charset_normalizer[${PYTHON_USEDEP}]
|
|
dev-python/EbookLib[${PYTHON_USEDEP}]
|
|
dev-python/sentence-splitter[${PYTHON_USEDEP}]
|
|
dev-python/mobi[${PYTHON_USEDEP}]
|
|
dev-python/SLPP[${PYTHON_USEDEP}]
|
|
"
|