-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
64 lines (59 loc) · 1.05 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
[project]
name = "mkflashcards"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"asyncpg>=0.30.0",
"beautifulsoup4>=4.12.3",
"langchain-text-splitters>=0.3.0",
"logfire[asyncpg,requests,starlette]>=1.0.1",
"markdown>=3.7",
"openai>=1.58.1",
"opentelemetry-instrumentation-asyncpg>=0.50b0",
"pydantic-ai>=0.0.15",
"pydantic>=2.9.2",
"python-fasthtml>=0.10.1",
"requests>=2.32.3",
"tiktoken>=0.8.0",
]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"Q000",
"ANN001",
"ANN002",
"ANN201",
"D103",
"RUF006",
"RUF013",
"S603",
"S607",
"S324",
"UP022",
"TRY003",
"EM102",
"FBT001",
"FBT002",
"PLR0913",
"PTH107",
"PTH118",
"PTH122",
"PTH123",
"PTH110",
"ASYNC230",
"N802",
"ANN003",
"D101",
]
[tool.ruff.format]
quote-style = "single"
[tool.dev-dependencies]
ruff = "^0.8.2"
[dependency-groups]
dev = [
"ruff>=0.8.2",
]