-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
43 lines (37 loc) · 1.03 KB
/
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
35
36
37
38
39
40
41
42
43
[tool.poetry]
name = "uiautodev"
version = "0.0.0"
description = "Mobile UI Automation, include UI hierarchy inspector, script recorder"
homepage = "https://uiauto.dev"
authors = ["codeskyblue <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
pillow = "*"
adbutils = "^2.7.0"
construct = "*"
lxml = "*"
click = "^8.1.7"
pygments = ">=2"
uiautomator2 = ">=2"
httpx = "*"
fastapi = "^0.111.0"
uvicorn = {version = "*", extras = ["standard"]}
poetry = "^1.8.2"
pydantic = "^2.6"
wdapy = "^0.2.2"
#[tool.poetry.extras]
#appium = ["appium-python-client", "httppretty"]
[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"