-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
74 lines (66 loc) · 1.31 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "WeTest"
version = "1.0.8"
authors = [{ name="Huabo He", email="[email protected]" }]
description = "Toolkit For Automated Testing"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"requests",
"aiohttp",
"numpy",
"pandas",
"openpyxl",
"xlrd",
"arrow",
"pyyaml",
"pypeln",
"configobj",
"datacompy",
"dictdiffer",
"jsonschema",
"pymysql",
"SQLAlchemy",
"Faker",
"ua-parser",
"user_agents",
"imgkit",
"Pillow",
"pixelmatch",
"pycryptodome",
"python-magic",
"jira",
"lxml",
"sxtwl==1.1.0",
"pika",
"boto3",
"paramiko",
]
[project.optional-dependencies]
hive = [
"cython",
"thriftpy",
"bitarray==1.1.0",
"impyla==0.16.2",
"pure_sasl==0.6.2",
"thrift_sasl==0.2.1",
]
test = [
"pytest",
"pytest-html",
"pytest-sugar",
"pytest-asyncio",
"allure-pytest",
]
[project.urls]
"Homepage" = "https://baiyyee.github.io"
"Source" = "https://github.com/baiyyee/WeTest"
"Tracker" = "https://github.com/baiyyee/WeTest/issues"