-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
50 lines (43 loc) · 1.16 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
[tool.poetry]
name = "uiautodev"
version = "0.0.0"
description = "Mobile UI Automation, include UI hierarchy inspector, script recorder"
homepage = "https://uiauto.dev"
authors = ["codeskyblue <codeskyblue@gmail.com>"]
license = "MIT"
readme = "README.md"
include = [
{path = "uiautodev/binaries/scrcpy.jar"}
]
[tool.poetry.dependencies]
python = "^3.8"
adbutils = ">=2.8.10,<3"
click = "^8.1.7"
pygments = ">=2"
uiautomator2 = ">=3.2.0,<4"
fastapi = ">=0.115.12,<1"
pydantic = "^2.6"
wdapy = ">0.2.2,<1"
websockets = ">=10.4"
Pillow = ">=9"
construct = "*"
lxml = ">=6.0.2"
httpx = ">=0.28.1"
uvicorn = ">=0.33.0"
rich = "*"
python-multipart = ">=0.0.18"
hypium = {version=">=6.0.7.200,<7.0.0", optional=true}
[tool.poetry.extras]
harmony = ["hypium"]
[tool.poetry.scripts]
"uiauto.dev" = "uiautodev.__main__:main"
"uiautodev" = "uiautodev.__main__:main"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.1"
isort = "^5.13.2"
pytest-cov = "^4.1.0"
[tool.poetry-dynamic-versioning] # 根据tag来动态配置版本号
enable = true
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"