-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
74 lines (65 loc) · 1.58 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "iartisanxl"
version = "0.3.0"
authors = [{ name = "Alvaro Somoza", email = "[email protected]" }]
description = "Dekstop application for generating images using Stable Diffusion."
requires-python = ">=3.11"
dependencies = [
"accelerate>=0.25.0 ",
"diffusers>=0.25.0.dev0",
"Pillow>=9.3.0",
"PyQt6>=6.6.0",
"pyqtgraph",
"safetensors",
"scipy",
"torchsde",
"transformers>=4.36.2",
"toml",
"tomesd",
"attrs",
"omegaconf",
"peft>=0.7.0",
"opencv-python>=4.8.1.78",
"matplotlib",
"scikit-image",
"superqt>=0.6.1",
"vcolorpicker>=1.4.3",
"einops>=0.7.0",
"timm==0.9.5",
"bitsandbytes>=0.43.0",
"prodigyopt==1.0",
"noise==1.2.2",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-qt", "pytest-cov", "build"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
iartisanxl = [
"theme/stylesheet.qss",
"theme/icons/*.*",
"theme/images/*.*",
"theme/cursors/*.svg",
]
[tool.ruff]
select = ["C", "E", "F", "I", "W"]
line-length = 119
[tool.ruff.isort]
lines-after-imports = 2
known-first-party = ["iartisanxl"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[project.gui-scripts]
iartisanxl = "iartisanxl.__main__:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = ["--import-mode=importlib"]
filterwarnings = [
"ignore::DeprecationWarning:torchvision.transforms._functional_pil",
]