-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
30 lines (26 loc) · 926 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
[tool.poetry]
name = "pyUIauto"
version = "0.1.9"
description = "Python UI Automation library, for cross-platform applications, interfacing through the accessibility API"
authors = ["Harvey Fretwell <hgfretwell@gmail.com>"]
maintainers = ["Harvey Fretwell <hgfretwell@gmail.com>"]
license = "GPL-3.0-only"
readme = "README.md"
homepage = "/~https://github.com/harveyf2801/pyUIauto"
repository = "/~https://github.com/harveyf2801/pyUIauto"
keywords = ["automation", "accessibility", "cross-platform", "ui", "desktop", "pywinauto", "atomac"]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.9"
atomacos = {version = "^3.3.0", platform = "darwin"}
pywinauto = {version = "^0.6.8", platform = "win32"}
pyautogui = "0.9.41"
importlib-metadata = "^6.6.0"
pathlib = "^1.0.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"