-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
56 lines (51 loc) · 967 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[project]
name = "asdff"
description = "custom pipeline for auto inpainting"
authors = [{ name = "Bingsu", email = "[email protected]" }]
dependencies = [
"diffusers[torch]>=0.19.0",
"transformers>=4.25.1",
"ultralytics",
]
requires-python = ">=3.8"
readme = "README.md"
license = { text = "AGPL-3.0" }
dynamic = ["version"]
[project.urls]
repository = "https://github.com/Bing-su/asdff"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.dev-dependencies]
dev = ["black", "ruff", "pre-commit", "ipykernel", "ipywidgets"]
test = ["pytest>=7.4.0"]
[tool.pdm.version]
source = "file"
path = "asdff/__version__.py"
[tool.ruff]
select = [
"A",
"B",
"C4",
"C90",
"E",
"EM",
"F",
"FA",
"FURB",
"I001",
"ISC",
"N",
"PERF",
"PIE",
"PT",
"PTH",
"RET",
"RUF",
"SIM",
"T20",
"UP",
"W",
]
ignore = ["B008", "B905", "E501"]
unfixable = ["F401"]