forked from Chainlit/chainlit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (71 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
80 lines (71 loc) · 1.18 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
[dependency-groups]
dev = ["actionlint-py>=1.7.12.24"]
backend = ["chainlit"]
[tool.mypy]
python_version = "3.10"
[[tool.mypy.overrides]]
module = [
"boto3.dynamodb.types",
"botbuilder.*",
"filetype",
"langflow",
"lazify",
"plotly",
"nest_asyncio",
"socketio.*",
"syncer",
"azure.storage.filedatalake",
"google-cloud-storage",
"azure.storage.blob",
"azure.storage.blob.aio",
"google.auth",
"google.oauth2",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["backend/tests"]
asyncio_mode = "auto"
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = [
"E",
"F",
"I",
"LOG",
"UP",
"T10",
"ISC",
"ICN",
"LOG",
"G",
"PIE",
"PT",
"Q",
"RSE",
"FURB",
"RUF",
]
ignore = [
"E712",
"E501",
"UP006",
"UP007",
"UP035",
"UP045",
"PIE790",
"RUF005",
"RUF006",
"RUF012",
"ISC001",
]
[tool.ruff.lint.isort]
combine-as-imports = true
known-first-party = ["chainlit"]
[tool.uv]
default-groups = ["backend"]
package = false
[tool.uv.sources]
chainlit = { workspace = true }
[tool.uv.workspace]
members = ["backend"]