forked from sagnik/Project_Velocity
#11 Added the complete ComfyUI engine. Co-authored-by: Sayan Datta <sayan@Sayans-MacBook-Air.local> Reviewed-on: sagnik/Project_Velocity#12
53 lines
1.3 KiB
Plaintext
53 lines
1.3 KiB
Plaintext
# Dream Weaver - Python Dependencies
|
|
# ===================================
|
|
# Required packages for automation scripts and batch processing
|
|
|
|
# Core dependencies
|
|
numpy>=1.24.0
|
|
Pillow>=10.0.0
|
|
opencv-python>=4.8.0
|
|
|
|
# API and WebSocket communication
|
|
requests>=2.31.0
|
|
websockets>=11.0.0
|
|
aiohttp>=3.8.0
|
|
aiofiles>=23.0.0
|
|
|
|
# Directory monitoring
|
|
watchdog>=3.0.0
|
|
|
|
# Data handling
|
|
dataclasses>=0.6;python_version<"3.7"
|
|
pathlib>=1.0.1;python_version<"3.4"
|
|
|
|
# Optional: For advanced image processing
|
|
scikit-image>=0.21.0
|
|
scipy>=1.11.0
|
|
|
|
# Optional: For GPU monitoring (production environments)
|
|
nvidia-ml-py3>=7.352.0;sys_platform!="darwin"
|
|
|
|
# Development dependencies (optional)
|
|
pytest>=7.4.0
|
|
black>=23.0.0
|
|
flake8>=6.0.0
|
|
mypy>=1.5.0
|
|
|
|
# ComfyUI Integration Notes:
|
|
# --------------------------
|
|
# These dependencies are for the automation scripts only.
|
|
# ComfyUI itself must be installed separately from:
|
|
# https://github.com/comfyanonymous/ComfyUI
|
|
#
|
|
# Required ComfyUI custom nodes:
|
|
# - ComfyUI ControlNet Auxiliary Preprocessors
|
|
# - ComfyUI-Impact-Pack (for SAM)
|
|
# - ComfyUI-Advanced-ControlNet
|
|
# - ComfyUI_IPAdapter_plus
|
|
# - comfyui_segment_anything
|
|
# - was-node-suite-comfyui
|
|
#
|
|
# Install custom nodes via:
|
|
# cd comfy_engine/custom_nodes
|
|
# git clone [repository-url]
|