pyproject.toml 377 B

123456789101112
  1. [project]
  2. name = "runcomfy_workflow_builder"
  3. version = "0.1.0"
  4. description = "A toolkit for LLM agents to dynamically fetch ComfyUI schemas, validate JSON workflows, and construct execution payloads."
  5. dependencies = [
  6. "requests",
  7. "python-dotenv",
  8. "fastapi",
  9. "uvicorn",
  10. ]
  11. # Using uv for dependency management. No build-system needed for local script execution.