-
Notifications
You must be signed in to change notification settings - Fork 330
/
pyproject.toml
53 lines (45 loc) · 1.4 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
44
45
46
47
48
49
50
51
52
53
[tool.poetry]
name = "seldom"
version = "3.11.0"
description = "Seldom automation testing framework based on unittest."
authors = ["bugmaster <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://seldomqa.github.io"
repository = "https://github.com/SeldomQA/seldom"
documentation = "https://seldomqa.github.io"
keywords = ["sedom", "selenium", "appium", "requests"]
classifiers = [
'Intended Audience :: Developers',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Testing',
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
appium-python-client = "^4.1.0"
xtestrunner = "^1.8.0"
loguru = "~0.7.0"
openpyxl = "^3.0.3"
pyyaml = "^6.0"
jsonschema = "^4.10.0"
jmespath = "^0.10.0"
pymysql = "^1.0.0"
genson = "~1.2.2"
click = "^8.1.3"
python-dateutil = "~2.8.2"
[tool.poetry.scripts]
seldom = "seldom.cli:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "tsinghua"
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"