forked from Trojaner/text-generation-webui-stable_diffusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (32 loc) · 949 Bytes
/
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
[project]
name = "stable_diffusion"
version = "1.6.1"
authors = [{ name = "Enes Sadık Özbek", email = "[email protected]" }]
description = "Stable Diffusion integration for text-generation-webui"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
license = { file = "LICENSE" }
[project.urls]
Repository = "https://github.com/Trojaner/text-generation-webui-stable_diffusion"
[tool.pyright]
typeCheckingMode = "standard"
useLibraryCodeForTypes = true
reportMissingImports = true
reportMissingTypeStubs = false
reportPrivateImportUsage = false
reportOptionalMemberAccess = false
reportFunctionMemberAccess = true
reportPossiblyUnboundVariable = true
reportMissingModuleSource = false
pythonVersion = "3.10"
[tool.isort]
profile = "black"
py_version = 310
known_first_party = ["modules"]
no_lines_before = [
"FUTURE",
"STANDARD_LIBRARY",
"THIRDPARTY",
"FIRSTPARTY",
"LOCALFOLDER",
]