-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (32 loc) · 938 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
[project]
name = "simpleautogui"
version = "0.0.6"
authors = [
{ name = "artasov", email = "[email protected]" }
]
description = "A library that greatly simplifies the automation of the Windows graphical interface."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
]
dependencies = [
"PyAutoGUI >= 0.9.54",
"opencv-python >= 4.9.0.80",
"pywin32 >= 306",
"pytesseract >= 0.3.1",
"mouse >= 0.7.1",
"webcolors >= 1.13",
"keyboard >= 0.13.5",
"pydub >= 0.25.1",
"pillow >= 10.3.0",
]
[project.urls]
Homepage = "https://github.com/Artasov/simpleautogui"
Issues = "https://github.com/Artasov/simpleautogui/issues"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"