forked from Comfy-Org/comfy-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (66 loc) · 1.6 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "comfy-cli"
license = {text = "GPL-3.0-only"}
version = "0.0.0" # Will be filled in by the CI/CD pipeline. Check publish_package.py.
requires-python = ">= 3.9"
description = "A CLI tool for installing and using ComfyUI."
readme = "README.md"
keywords = ["comfyui", "stable diffusion"]
maintainers = [
{name = "Yoland Yan", email = "yoland@drip.art"},
{name = "James Kwon", email = "hongilkwon316@gmail.com"},
{name = "Robin Huang", email = "robin@drip.art"},
{name = "Dr.Lt.Data", email = "dr.lt.data@gmail.com"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
dependencies = [
"charset-normalizer>=3.0.0",
"GitPython",
"httpx",
"mixpanel",
"packaging",
"pathspec",
"psutil",
"pyyaml",
"questionary",
"requests",
"rich",
"tomlkit",
"typer>=0.9.0",
"typing-extensions>=4.7.0",
"uv",
"websocket-client",
]
[project.optional-dependencies]
dev = [
"pre-commit",
"pytest",
"ruff",
]
[project.scripts]
comfy = "comfy_cli.__main__:main"
comfy-cli = "comfy_cli.__main__:main"
comfycli = "comfy_cli.__main__:main"
[project.urls]
Repository = "https://github.com/drip-art/comfy-cli.git"
[tool.setuptools.packages.find]
where = ["."]
include = ["comfy_cli*"]
[tool.ruff]
line-length = 120
target-version = "py39"
[tool.ruff.lint]
select = [
"E4", # default
"E7", # default
"E9", # default
"F", # default
"I", # isort-like behavior (import statement sorting)
]