-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
62 lines (58 loc) · 1.35 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
[project]
name = "httpfpt"
description = "基于 HTTP 请求的快速数据驱动 pytest 接口自动化测试框架"
dynamic = [
"version",
]
authors = [
{name = "Wu Clan", email = "[email protected]"},
]
dependencies = [
"allure-pytest==2.13.2",
"cache3>=0.4.3",
"cappa==0.17.1",
"cryptography>=41.0.6",
"dbutils>=3.0.2",
"dirty-equals==0.7.1",
"faker>=13.15.0",
"httpx>=0.23.0",
"jinja2>=3.1.3",
"loguru>=0.6.0",
"pre-commit>=3.2.2",
"py==1.11.0",
"pydantic>=2.6.0",
"pymysql>=0.9.3",
"pytest>=8.0.0,<=8.0.2",
"pytest-html==4.0.0",
"pytest-metadata==3.0.0",
"pytest-pretty>=1.2.0",
"python-dotenv>=0.20.0",
"python-jsonpath>=1.0.0",
"pyyaml>=6.0.1",
"redis[hiredis]>=5.0.1",
"requests>=2.31.0",
"rtoml==0.9.0",
"xlrd==1.2.0",
"eval_type_backport>=0.1.3",
"stamina>=24.1.0",
"typing_extensions>=4.8.0",
"jsonschema>=4.21.1",
"pygments>=2.17.2",
"glom==23.5.0",
]
requires-python = ">=3.8"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm]
version = { source = "file", path = "httpfpt/__init__.py" }
[tool.pdm.dev-dependencies]
test = [
"pyright==1.1.349",
"ruff>=0.4.5",
]
[tool.pdm.scripts]
lint = "pre-commit run --all-files"
typing = "pyright -p ."
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"