-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpyproject.toml
executable file
·51 lines (44 loc) · 1.01 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
[tool.poetry]
name = "transition-ticket"
version = "1.0.0"
description = "B站会员购脚本"
authors = ["biliticket"]
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"}
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"
psutil = "^6.0.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pyinstaller = "^6.7.0"
ruff = "^0.5.0"
pyupgrade = "^3.15.2"
[tool.poetry.group.graph]
optional = true
[tool.poetry.group.graph.dependencies]
transitions-gui = "^0.9.0"
graphviz = "^0.20.3"
pygraphviz = "^1.13"
[tool.ruff]
line-length = 192
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"