-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
86 lines (81 loc) · 1.6 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
75
76
77
78
79
80
81
82
83
84
85
86
[project]
name = "chuni-penguin"
version = "2024.12.2"
description = "Add your description here"
authors = [{ name = "beerpiss", email = "[email protected]" }]
dependencies = [
"discord-py>=2.4.0",
"beautifulsoup4>=4.12.3",
"pillow>=11.0.0",
"alembic>=1.13.3",
"aiosqlite>=0.20.0",
"httpx>=0.27.2",
"rapidfuzz>=3.10.0",
"sqlalchemy[asyncio]>=2.0.36",
"tzdata>=2024.2; sys_platform == 'win32'",
"msgspec>=0.18.6",
]
readme = "README.md"
requires-python = ">= 3.8"
[project.optional-dependencies]
speedup = [
"faust-cchardet>=2.1.19",
"brotli>=1.1.0",
"lxml>=5.3.0",
"orjson>=3.10.7",
"uvloop>=0.21.0; sys_platform != 'win32'",
"winloop>=0.1.6; sys_platform == 'win32'",
]
[tool.rye]
managed = true
virtual = true
universal = true
lock-with-sources = true
generate-hashes = true
dev-dependencies = [
"types-beautifulsoup4>=4.12.0.20240907",
"typing-extensions>=4.12.2",
"jishaku>=2.5.2",
"ruff>=0.6.9",
"basedpyright>=1.19.0",
"pytest>=8.3.3",
"pytest-asyncio>=0.24.0",
"pytest-cov>=5.0.0",
"pytest-httpx>=0.32.0",
"pytest-html>=4.1.1",
]
[tool.ruff]
select = [
"ASYNC",
"B",
"BLE",
"C4",
"DTZ",
"E",
"EM",
"F",
"FBT",
"FLY",
"I",
"ISC",
"Q",
"PERF",
"PGH",
"PIE",
"PTH",
"RET",
"RSE",
"RUF",
"SIM",
"TRY",
"TID252",
"W",
]
ignore = ["E501"]
unfixable = ["B"]
[tool.ruff.extend-per-file-ignores]
"__init__.py" = ["F401"]
"bot.py" = ["E402"]
"chunithm_net/consts.py" = ["RUF001"]
[tool.basedpyright]
typeCheckingMode = "standard"