-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (81 loc) · 2.63 KB
/
Copy pathpyproject.toml
File metadata and controls
93 lines (81 loc) · 2.63 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
83
84
85
86
87
88
89
90
91
92
93
[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.10"
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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"charset-normalizer>=3",
"cookiecutter",
"gitpython>=3.1.50",
"httpx",
"mixpanel",
"packaging",
"pathspec",
"posthog>=6,<8",
"psutil",
"pyyaml",
"questionary",
"requests",
"rich",
"ruff",
"semver~=3.0.2",
"tomlkit",
"typer>=0.12.5",
"typing-extensions>=4.7",
"uv>=0.11.15",
"websocket-client",
]
optional-dependencies.dev = [ "jsonschema", "pre-commit", "pytest", "pytest-cov", "ruff" ]
optional-dependencies.preview = [ "term-image>=0.7,<0.8" ]
urls.Repository = "https://github.com/Comfy-Org/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.setuptools.package-data]
# Bundled skills: subdirs of comfy_cli.skills named after each skill (kept in
# sync with BUNDLED_SKILLS). Hyphenated dirs aren't importable packages, so
# they're plain data dirs matched by glob from the parent package.
"comfy_cli.skills" = [ "*/SKILL.md" ]
"comfy_cli.schemas" = [ "*.json", "*.md" ]
"comfy_cli.cql.data" = [ "*.yaml", "*.json" ]
"comfy_cli.command.generate" = [ "spec/openapi.yml" ]
[tool.ruff]
target-version = "py310"
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
]