comfyui-frontend-package 1.10.14__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.2
2
+ Name: comfyui_frontend_package
3
+ Version: 1.10.14
4
+ Requires-Python: >=3.10
5
+ Dynamic: requires-python
@@ -0,0 +1,11 @@
1
+ # comfyui_frontend pypi package
2
+
3
+ This is the pypi package structure for the comfyui frontend.
4
+
5
+ During build process, the compiled assets are copied into the `comfyui_frontend/static` directory.
6
+
7
+ The package can be installed with the following command:
8
+
9
+ ```bash
10
+ pip install comfyui_frontend
11
+ ```
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.2
2
+ Name: comfyui_frontend_package
3
+ Version: 1.10.14
4
+ Requires-Python: >=3.10
5
+ Dynamic: requires-python
@@ -0,0 +1,7 @@
1
+ README.md
2
+ setup.py
3
+ comfyui_frontend/__init__.py
4
+ comfyui_frontend_package.egg-info/PKG-INFO
5
+ comfyui_frontend_package.egg-info/SOURCES.txt
6
+ comfyui_frontend_package.egg-info/dependency_links.txt
7
+ comfyui_frontend_package.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,11 @@
1
+ import os
2
+ from setuptools import setup, find_packages
3
+
4
+ setup(
5
+ name="comfyui_frontend_package",
6
+ version=os.getenv("COMFYUI_FRONTEND_VERSION") or "0.1.0",
7
+ packages=find_packages(),
8
+ include_package_data=True,
9
+ install_requires=[],
10
+ python_requires=">=3.10",
11
+ )