mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-28 18:22:40 +00:00
[CI] Publish comfyui-frontend-package to pypi (#2774)
This commit is contained in:
4
comfyui_frontend_package/.gitignore
vendored
Normal file
4
comfyui_frontend_package/.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
comfyui_frontend_package/static/*
|
||||
comfyui_frontend_package.egg-info/*
|
||||
|
||||
__pycache__/
|
||||
1
comfyui_frontend_package/MANIFEST.in
Normal file
1
comfyui_frontend_package/MANIFEST.in
Normal file
@@ -0,0 +1 @@
|
||||
recursive-include comfyui_frontend_package/static *
|
||||
13
comfyui_frontend_package/README.md
Normal file
13
comfyui_frontend_package/README.md
Normal file
@@ -0,0 +1,13 @@
|
||||
# comfyui_frontend pypi package
|
||||
|
||||
This is the pypi package structure for the comfyui frontend.
|
||||
|
||||
During build process, the compiled assets are copied into the `${PROJECT_ROOT}/comfyui_frontend_package/comfyui_frontend_package/static` directory.
|
||||
|
||||
The package can be installed with the following command:
|
||||
|
||||
```bash
|
||||
pip install comfyui-frontend-package
|
||||
```
|
||||
|
||||
Ref: <https://pypi.org/project/comfyui-frontend-package/>
|
||||
11
comfyui_frontend_package/setup.py
Normal file
11
comfyui_frontend_package/setup.py
Normal 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.9",
|
||||
)
|
||||
Reference in New Issue
Block a user