forked from SECTL/SecRandom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (70 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
84 lines (70 loc) · 1.71 KB
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
[project]
name = "secrandom"
version = "1.1.0"
description = "公平随机抽取系统 - Modern educational tool with intelligent weighting algorithm"
readme = "README.md"
requires-python = "==3.8.10"
dependencies = [
# GUI框架
"PyQt6==6.7.1",
"PyQt6-Qt6==6.7.3",
"PyQt6_sip==13.8.0",
"PyQt6-Fluent-Widgets==1.9.1",
"PyQt6-Frameless-Window==0.7.4",
"darkdetect==0.8.0",
# 核心库
"asyncio~=3.4.3",
"loguru==0.7.3",
"colorama==0.4.6",
"packaging==25.0",
# 数据处理
"numpy==1.24.4",
"pandas~=2.0.3",
"pillow~=10.4.0",
"openpyxl==3.1.5",
# 网络与通信
"requests==2.32.4",
"edge-tts==7.0.2",
# 音频处理
"pyttsx3==2.98",
"sounddevice==0.5.2",
"soundfile==0.13.1",
# 系统工具
"psutil~=7.0.0",
"keyboard==0.13.5",
# 加密与安全
"pyotp==2.9.0",
"pycryptodome==3.23.0",
# 二维码处理
"pyqrcode~=1.2.1",
"pypng~=0.20220715.0",
"colorthief==0.2.1",
# Windows特定依赖
"pywin32==310; platform_system == 'Windows'",
"win32_setctime==1.2.0; platform_system == 'Windows'",
"winshell==0.6; platform_system == 'Windows'",
"comtypes==1.4.10",
"wmi==1.5.1",
"pycaw==20240210; platform_system == 'Windows'",
# 其他依赖
"sip~=6.8.6",
"jinja2~=3.1.6",
]
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"black",
"flake8",
]
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
# 添加这个配置告诉 setuptools 不要尝试自动发现包
[tool.setuptools]
py-modules = []
[tool.uv]
dev-dependencies = [
"pytest>=6.0",
"black",
"flake8",
]