-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 797 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 797 Bytes
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "simulateinput"
version = "0.1.1"
description = "Cross-platform desktop and browser automation test platform."
readme = "docs/automation-platform-design.md"
requires-python = ">=3.11"
dependencies = [
"PyYAML>=6.0",
"opencv-python-headless>=4.13.0.92",
"pillow>=12.1.1",
"pytesseract>=0.3.13",
"pywinauto>=0.6.9",
"pyobjc-framework-Quartz>=11.1; platform_system=='Darwin'",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
]
[project.scripts]
simctl = "simulateinput.cli.main:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]