-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (47 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
50 lines (47 loc) · 1.31 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
[project]
name = "wowsbot"
version = "0.1.0"
description = "A modular automation script for the online game World of Warships using template matching and OCR"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"mss",
"numpy",
"keyboard",
"pywin32",
"pygetwindow",
"pydirectinput",
"opencv-python",
"rapidocr-onnxruntime",
"scikit-learn",
"torch",
"torchvision",
"torchaudio",
# --index-url https://download.pytorch.org/whl/cu128"
"ultralytics",
"onnx",
]
authors = [
{name = "WoWsBot Developer"}
]
license = {text = "GPL-3.0"}
keywords = ["wows", "bot", "automation", "gaming"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Games/Entertainment",
"Topic :: Utilities"
]
[project.urls]
Homepage = "https://github.com/Barabama/WoWsBot"
Repository = "https://github.com/Barabama/WoWsBot"
Documentation = "https://github.com/Barabama/WoWsBot/blob/main/README.md"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["src"]