-
Notifications
You must be signed in to change notification settings - Fork 140
/
pyproject.toml
38 lines (32 loc) · 1.04 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
[tool.poetry]
name = "poium"
version = "1.6.3"
description = "Page Objects design pattern test library."
authors = ["fnngj <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://seldomqa.github.io"
repository = "https://github.com/SeldomQA/poium"
keywords = ["selenium", "appium", "playwright"]
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',
]
[tool.poetry.dependencies]
python = ">=3.8"
loguru = "~0.7.0"
appium-python-client = "^4.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "douban"
url = "https://pypi.doubanio.com/simple"