forked from dongfanger/tep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (49 loc) · 1.44 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
[tool.poetry]
name = "tep"
version = "0.10.1"
description = "tep is a testing tool to help you write pytest more easily. Try Easy Pytest!"
license = "Apache-2.0"
readme = "README.md"
authors = ["dongfanger <dongfanger@outlook.com>"]
homepage = "https://github.com/dongfanger/tep"
repository = "https://github.com/dongfanger/tep"
keywords = ["testing", "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.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
]
[tool.poetry.dependencies]
python = "^3.7"
faker = "^4.1.1"
urllib3 = "^1.25.9"
requests = "^2.22.0"
allure-pytest = "^2.8.16"
allure-python-commons = "^2.8.16"
pyyaml = "^5.4.1"
pytest-assume = "^2.4.2"
jmespath = "^0.9.5"
loguru = "^0.4.1"
fastapi = "^0.72.0"
uvicorn = "^0.17.0"
pydantic = "^1.9.0"
pytest = "^7.1.1"
[tool.poetry.dev-dependencies]
wget = "^3.2"
[[tool.poetry.source]]
name = "tsinghua"
default = true
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
[tool.poetry.scripts]
tep = "tep.cli:main"
[tool.poetry.plugins."pytest11"]
"tep" = "tep.plugin:Plugin"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"