Skip to content

Commit 66dc39b

Browse files
authored
Merge pull request #34 from haohaocreates/pyproject
Add pyproject.toml for Custom Node Registry
2 parents 253303c + 405253c commit 66dc39b

File tree

2 files changed

+16
-25
lines changed

2 files changed

+16
-25
lines changed

README.md

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,7 @@ Related project: https://github.com/FizzleDorf/ComfyUI_FizzNodes
77
---
88

99
<!--ts-->
10-
* [Keyframed Nodes For ComfyUI](#keyframed-nodes-for-comfyui)
11-
* [Overview](#overview)
12-
* [Starter Workflows](#starter-workflows)
13-
* [Prompt Scheduling](#prompt-scheduling)
14-
* [Interleaving Multiple Prompts Simultaneously (aka Prompt Entanglement, aka Prompt Superposition)](#interleaving-multiple-prompts-simultaneously-aka-prompt-entanglement-aka-prompt-superposition)
15-
* [Simple Curved Parameter](#simple-curved-parameter)
16-
* [Multi-Prompt Transition With Manually Specified Curves](#multi-prompt-transition-with-manually-specified-curves)
17-
* [Parameter Groups and Curve Drawing Utilities](#parameter-groups-and-curve-drawing-utilities)
18-
* [Nodes](#nodes)
19-
* [Curve Constructors](#curve-constructors)
20-
* [Curve From String](#curve-from-string)
21-
* [Curve From YAML](#curve-from-yaml)
22-
* [Constant-Valued Curve](#constant-valued-curve)
23-
* [Entangled Curves](#entangled-curves)
24-
* [Curve Operators](#curve-operators)
25-
* [Evaluate Curve At T](#evaluate-curve-at-t)
26-
* [Apply Curve To Conditioning](#apply-curve-to-conditioning)
27-
* [Add Conditions](#add-conditions)
28-
* [Curve Arithmetic Operators](#curve-arithmetic-operators)
29-
* [Scheduling](#scheduling)
30-
* [Schedule Prompt](#schedule-prompt)
31-
* [Keyframed Condition](#keyframed-condition)
32-
* [Interpolation Methods](#interpolation-methods)
33-
* [Set Keyframe](#set-keyframe)
34-
* [Evaluate Schedule](#evaluate-schedule)
10+
3511
<!--te-->
3612

3713

pyproject.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[project]
2+
name = "comfyui-keyframed"
3+
description = "ComfyUI nodes to facilitate parameter/prompt keyframing using comfyui nodes for defining and manipulating parameter curves. Essentially provides a ComfyUI interface to the [a/keyframed](https://github.com/dmarx/keyframed) library."
4+
version = "1.0.0"
5+
license = "LICENSE"
6+
dependencies = ["keyframed"]
7+
8+
[project.urls]
9+
Repository = "https://github.com/dmarx/ComfyUI-Keyframed"
10+
# Used by Comfy Registry https://comfyregistry.org
11+
12+
[tool.comfy]
13+
PublisherId = ""
14+
DisplayName = "ComfyUI-Keyframed"
15+
Icon = ""

0 commit comments

Comments
 (0)