# Copyright 2024-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

# Meta-package: upstream split into core + media sub-packages in 0.10.x

EAPI=8

DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{12..14} )

inherit distutils-r1 pypi

DESCRIPTION="ComfyUI workflow templates (meta-package)"
HOMEPAGE="https://github.com/Comfy-Org/workflow_templates https://pypi.org/project/comfyui-workflow-templates/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+api +assets +image +json +other +video"

RDEPEND="
	dev-python/comfyui-workflow-templates-core[${PYTHON_USEDEP}]
	json? ( dev-python/comfyui-workflow-templates-json[${PYTHON_USEDEP}] )
	api? ( dev-python/comfyui-workflow-templates-media-api[${PYTHON_USEDEP}] )
	video? ( dev-python/comfyui-workflow-templates-media-video[${PYTHON_USEDEP}] )
	image? ( dev-python/comfyui-workflow-templates-media-image[${PYTHON_USEDEP}] )
	other? ( dev-python/comfyui-workflow-templates-media-other[${PYTHON_USEDEP}] )
	assets? ( dev-python/comfyui-workflow-templates-assets[${PYTHON_USEDEP}] )
"