-
Notifications
You must be signed in to change notification settings - Fork 126
/
pyproject.toml
43 lines (35 loc) · 943 Bytes
/
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
[tool.poetry]
name = "CxKitty"
version = "0.4.5"
description = "超星学习通答题姬. 媒体播放、章节测验、课程考试, 集成式自动化工具"
license = "GPL-3.0"
authors = ["SocialSisterYi <[email protected]>"]
readme = "README.md"
repository = "https://github.com/SocialSisterYi/CxKitty"
[[tool.poetry.source]]
name = "tsinghua"
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
priority = "default"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
requests = "^2.28.1"
qrcode = "^7.3.1"
rich = "^12.6.0"
pycryptodome = "^3.15.0"
lxml = "^4.9.1"
pyyaml = "^6.0"
jsonpath-python = "^1.0.6"
beautifulsoup4 = "^4.11.1"
ddddocr = "^1.4.10"
numpy = "^1.24.3"
opencv-python = "^4.7.0.72"
dataclasses-json = "^0.5.7"
yarl = "^1.9.2"
[tool.poetry.group.dev.dependencies]
black = "^22.12.0"
isort = "^5.12.0"
[tool.black]
line-length = 100
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"