From 8311fd02614d252b82070332fba4a12b5f9b3847 Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Sun, 22 Feb 2026 23:28:21 +0100 Subject: [PATCH] Add ComfyUI registry publishing workflow and pyproject.toml Co-Authored-By: Claude Opus 4.6 --- .github/workflows/publish.yml | 20 ++++++++++++++++++++ pyproject.toml | 22 ++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 .github/workflows/publish.yml create mode 100644 pyproject.toml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..bd90e9e --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,20 @@ +name: Publish to Comfy registry +on: + workflow_dispatch: + push: + branches: + - master + paths: + - "pyproject.toml" + +jobs: + publish-node: + name: Publish Custom Node to registry + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@v4 + - name: Publish Custom Node + uses: Comfy-Org/publish-node-action@main + with: + personal_access_token: ${{ secrets.REGISTRY_ACCESS_TOKEN }} diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..25d28f0 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,22 @@ +[project] +name = "comfyui-tween" +description = "Video frame interpolation nodes for ComfyUI using BIM-VFI, EMA-VFI, SGM-VFI, and GIMM-VFI. Designed for long videos with thousands of frames." +version = "1.0.0" +license = "Apache-2.0" +requires-python = ">=3.10" +dependencies = [ + "gdown", + "timm", + "omegaconf", + "yacs", + "easydict", + "einops", + "huggingface_hub", +] + +[project.urls] +Repository = "https://github.com/Ethanfel/ComfyUI-Tween" + +[tool.comfy] +PublisherId = "ethanfel" +DisplayName = "Tween - Video Frame Interpolation"