forked from zebrunner/python-agent-pytest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (58 loc) · 1.79 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
[tool.poetry]
name = "pytest-zebrunner"
version = "1.6.0"
description = "Pytest connector for Zebrunner reporting"
authors = ["Anatoliy Platonov <[email protected]>"]
license = "Apache"
readme = "README.md"
homepage = "https://zebrunner.com/documentation/agents/pytest"
repository = "https://github.com/zebrunner/python-agent-pytest"
keywords = ["automation", "zebrunner", "testing"]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Framework :: Pytest",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.plugins.pytest11]
pytest-zebrunner = "pytest_zebrunner.plugin"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
pytest = ">=4.5.0"
httpx = "^0.25.0"
pydantic = "^1.0"
python-dotenv = ">=0.10"
PyYAML = "^5.3.1"
[tool.poetry.dev-dependencies]
black = "^23.9.1"
isort = "^5.6.4"
mypy = "^1.5.1"
pre-commit = "^3.4.0"
pytest-cov = "^4.1.0"
selenium = "^4.0"
setuptools = "^68.2.2"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["pytest_zebrunner"]
[tool.coverage.report]
show_missing = true
[tool.isort]
profile = "black"
[tool.black]
line-length = 119
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"