-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.24 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
[project]
name = "wow-fishing-agent"
version = "0.1.0"
description = "Automatic fishing agent for World of Warcraft"
authors = [
{name = "Ninglin Du", email = "[email protected]"},
]
requires-python = "==3.11.*"
readme = "README.md"
license = {text = "MIT"}
dependencies = [
"pyaudiowpatch>=0.2.12.6; sys_platform == 'win32'", # loopback音频读取
"ultralytics>=8.3.57", # YOLO 目标检测
"pynput>=1.7.7", # 键鼠监听
"pillow>=11.1.0", # 截图
"scikit-learn>=1.6.0",
"pyyaml>=6.0.2",
"pydantic>=2.10.4",
"loguru>=0.7.3",
"typer>=0.15.1",
"fire>=0.7.0",
"evaluate>=0.4.3",
"torch>=2.5.1+cu124",
"torchvision>=0.20.1+cu124",
"torchaudio>=2.5.1+cu124",
"transformers[torch]>=4.47.1",
"pip>=24.3.1",
]
[tool.pdm]
distribution = false
[[tool.pdm.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cu124"
include_packages = ["torch", "torchvision", "torchaudio"]
exclude_packages = ["*"]
[[tool.pdm.source]]
name = "aliyun"
url = "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple"
verify_ssl = true
include_packages = ["*"]
exclude_packages = ["torch", "torchvision", "torchaudio"]
[tool.pdm.scripts]
train_splash = "python -m sound_ei.train"
fishing = "python -m fishing"