From 705c4caad373693694e36a9bd74d48f48f136d41 Mon Sep 17 00:00:00 2001 From: Benjamin Berman Date: Tue, 8 Aug 2023 12:52:16 -0700 Subject: [PATCH] include openapi spec --- MANIFEST.in | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index ea848a20b..12eafc46a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,3 +2,4 @@ recursive-include web * recursive-include comfy/sd1_tokenizer * include comfy/sd1_clip_config.json include comfy/sd2_clip_config.json +recursive-include comfy/api * diff --git a/setup.py b/setup.py index bce235833..86a62dcc4 100644 --- a/setup.py +++ b/setup.py @@ -159,7 +159,7 @@ def dependencies() -> [str]: return _dependencies -package_data = ['sd1_tokenizer/*', '**/*.json'] +package_data = ['sd1_tokenizer/*', '**/*.json', '**/*.yaml'] if not is_editable: package_data.append('web/**/*') setup(