-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (82 loc) · 2.04 KB
/
Copy pathpyproject.toml
File metadata and controls
89 lines (82 loc) · 2.04 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
85
86
87
88
89
[project]
name = "windmouse"
version = "1.0.2"
description = "Human-like mouse movement library implementing the WindMouse algorithm for bot detection avoidance"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "GPL-3.0-only"}
authors = [
{name = "WindMouse Contributors"}
]
keywords = ["automation", "mouse", "windmouse", "bot-detection", "human-like"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
]
dependencies = [
"numpy>=1.22.0",
]
[project.urls]
Homepage = "https://github.com/AsfhtgkDavid/windmouse"
Documentation = "https://windmouse.readthedocs.io"
Repository = "https://github.com/AsfhtgkDavid/windmouse"
Issues = "https://github.com/AsfhtgkDavid/windmouse/issues"
[project.optional-dependencies]
ahk = ["ahk>=1.0.0"]
pyautogui = ["pyautogui>=0.9.50"]
all = [
"ahk>=1.0.0",
"pyautogui>=0.9.50",
]
docs = [
"sphinx>=4.0.0",
"sphinx-rtd-theme>=1.0.0",
"sphinx-autodoc-typehints>=1.12.0",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.mypy]
strict = true
[tool.black]
line-length = 79
[tool.setuptools.package-dir]
windmouse = "src"
[dependency-groups]
ahk = [
"ahk>=1.0.0",
]
all = [
"ahk>=1.0.0",
"pyautogui>=0.9.50",
]
dev = [
"black>=22.0.0",
"flake8>=5.0.0",
"mypy>=0.990",
"pylint>=2.15.0",
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-xdist>=3.0.0",
]
docs = [
"sphinx>=4.0.0",
"sphinx-rtd-theme>=1.0.0",
"sphinx-autodoc-typehints>=1.12.0",
]
pyautogui = [
"pyautogui>=0.9.50",
]
test = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-xdist>=3.0.0",
"pytest-mock>=3.10.0",
]