forked from Comfy-Org/comfy-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (73 loc) · 2.15 KB
/
pyproject.toml
File metadata and controls
82 lines (73 loc) · 2.15 KB
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
77
78
79
80
81
82
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools>=61" ]
[project]
name = "comfy-cli"
version = "0.0.0" # Will be filled in by the CI/CD pipeline. Check publish_package.py.
description = "A CLI tool for installing and using ComfyUI."
readme = "README.md"
keywords = [ "comfyui", "stable diffusion" ]
license = { text = "GPL-3.0-only" }
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" },
]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"charset-normalizer>=3",
"click<=8.1.8",
"cookiecutter",
"gitpython",
"httpx",
"mixpanel",
"packaging",
"pathspec",
"psutil",
"pyyaml",
"questionary",
"requests",
"rich",
"ruff",
"semver~=3.0.2",
"tomlkit",
"typer>=0.9",
"typing-extensions>=4.7",
"uv",
"websocket-client",
]
optional-dependencies.dev = [ "pre-commit", "pytest", "pytest-cov", "ruff" ]
urls.Repository = "https://github.com/drip-art/comfy-cli.git"
scripts.comfy = "comfy_cli.__main__:main"
scripts.comfy-cli = "comfy_cli.__main__:main"
scripts.comfycli = "comfy_cli.__main__:main"
[tool.setuptools.packages.find]
where = [ "." ]
include = [ "comfy_cli*" ]
[tool.ruff]
target-version = "py39"
line-length = 120
lint.select = [
"E", # pycodestyle - Error
"F", # default
"I", # isort-like behavior (import statement sorting)
"Q", # flake8-quotes
"RET504", # Unnecessary assignment to {name} before return statement
"UP", # pyupgrade
"W", # pycodestyle - Warning
]
lint.extend-ignore = [
"E501", # Line too long
]