Publish comfyui_frontend pypi package (#2765)

This commit is contained in:
Chenlei Hu
2025-02-28 11:57:58 -05:00
committed by GitHub
parent ca189372b3
commit 583d5370c0
6 changed files with 81 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
import os
from setuptools import setup, find_packages
setup(
name="comfyui_frontend_package",
version=os.getenv("COMFYUI_FRONTEND_VERSION") or "0.1.0",
packages=find_packages(),
include_package_data=True,
install_requires=[],
python_requires=">=3.10",
)