-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpyproject.toml
61 lines (53 loc) · 1.46 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
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "tep"
version = "3.0.4"
description = "tep is a testing framework to help you write pytest more easily. Try Easy Pytest!"
license = "Apache-2.0"
readme = "README.md"
authors = ["dongfanger <[email protected]>"]
homepage = "https://github.com/dongfanger/tep"
repository = "https://github.com/dongfanger/tep"
keywords = ["testing", "http", "framework", "pytest"]
classifiers = [
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.8"
]
packages = [
{ include = "tep" }
]
[tool.poetry.dependencies]
python = "^3.8"
faker = "^4.1.1"
requests = "^2.22.0"
urllib3 = "^2.2.3"
pytest-assume = "^2.4.2"
pydantic = "^1.9.0"
pytest = "^7.1.1"
pytest-xdist = "^3.1.0"
filelock = "^3.8.2"
jsonpath = "^0.82"
pymysql = "^1.1.0"
pytest-html = "^4.0.2"
httpx = "^0.25.1"
haralyzer = "^2.4.0"
deepdiff = "^6.7.1"
tenacity = "^8.2.3"
pyyaml = "^6.0.1"
[tool.poetry.dev-dependencies]
wget = "^3.2"
[[tool.poetry.source]]
name = "tsinghua"
priority = "primary"
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
[tool.poetry.scripts]
tep = "tep.cli:main"
[tool.poetry.plugins."namespace"]
"tep" = "tep.plugin:Plugin"