forked from NekoNekoNya/bilibili-ticket-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
executable file
·74 lines (61 loc) · 1.48 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
[tool.poetry]
name = "bilibili-show-python"
version = "1.0.0"
description = "B站会员购脚本"
authors = ["bilibili-ticket"]
license = "GPL3.0"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
transitions = "^0.9.1"
httpx = {extras = ["http2", "socks"], version = "^0.27.0"}
hishel = "^0.0.27"
fake-useragent = "^1.5.1"
loguru = "^0.7.2"
bili-ticket-gt-python = "^0.2.2"
pycryptodome = "^3.20.0"
pyyaml = "^6.0.1"
inquirer = "^3.2.4"
qrcode = "^7.4.2"
pillow = "^10.3.0"
selenium = "^4.21.0"
pybrowsers = "^0.6.0"
py-machineid = "^0.5.1"
plyer = "^2.1.0"
pyaudio = "^0.2.14"
pytz = "^2024.1"
pyinstaller = "^6.7.0"
psutil = "^6.0.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ruff = "^0.5.0"
pyupgrade = "^3.15.2"
snakeviz = "^2.2.0"
[tool.poetry.group.graph]
optional = true
[tool.poetry.group.graph.dependencies]
graphviz = "^0.20.3"
pygraphviz = "^1.13"
[tool.poetry.group.doc]
optional = true
[tool.poetry.group.doc.dependencies]
sphinx = "^7.3.7"
recommonmark = "^0.7.1"
[tool.ruff]
line-length = 190
[tool.ruff.lint]
select = ["B", "C4", "C9", "E", "F", "I", "PL", "S", "SIM", "U", "W", "YTT"]
ignore = ["B006", "S311"]
[tool.ruff.lint.mccabe]
max-complexity = 12
[tool.ruff.lint.pylint]
max-args = 8
allow-magic-value-types = ["int","str"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "TUNA"
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"