forked from pytest-dev/pytest-bdd
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
186 lines (177 loc) · 4.67 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]
[project]
authors = [
{name = "Oleg Pidsadnyi", email = "[email protected]"},
{name = "Anatoly Bubenkov", email = "[email protected]"},
{name = "Adam Coddington", email = "[email protected]"},
{name = "Albert-Jan Nijburg", email = "[email protected]"},
{name = "Alessio Bogon", email = "[email protected]"},
{name = "Andrey Makhnach", email = "[email protected]"},
{name = "Aron Curzon", email = "[email protected]"},
{name = "Dmitrijs Milajevs", email = "[email protected]"},
{name = "Dmitry Kolyagin", email = "[email protected]"},
{name = "Florian Bruhin", email = "[email protected]"},
{name = "Floris Bruynooghe", email = "[email protected]"},
{name = "Harro van der Klauw", email = "[email protected]"},
{name = "Hugo van Kemenade", email = "[email protected]"},
{name = "Konstantin Goloveshko", email = "[email protected]"},
{name = "Laurence Rowe", email = "[email protected]"},
{name = "Leonardo Santagada", email = "[email protected]"},
{name = "Milosz Sliwinski", email = "[email protected]"},
{name = "Michiel Holtkamp", email = "[email protected]"},
{name = "Robin Pedersen", email = "[email protected]"},
{name = "Sergey Kraynev", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
dependencies = [
"aiohttp",
"attrs",
"certifi",
"chevron",
"ci-environment",
# This is needed until messages become regular PyPi package https://github.com/cucumber/messages/pull/165
"cuke-messages==0.1.0",
"cucumber-expressions",
"decopatch",
"docopt-ng",
"filelock",
"gherkin-official>=24,<30",
"importlib-metadata;python_version<'3.10.0'",
"importlib-resources",
"makefun",
"Mako",
"ordered_set",
"packaging",
"parse",
"parse_type>=0.6.0",
"pathvalidate",
"py",
"pydantic>=2.0.3",
"pytest>=5.2",
"cucumber-tag-expressions",
"typing-extensions;python_version<'3.11.0'"
]
description = "BDD for pytest"
license = {file = "LICENSE.rst"}
maintainers = [
{name = "Konstantin Goloveshko", email = "[email protected]"}
]
name = "pytest-bdd-ng"
readme = {file = "README.rst", content-type = "text/x-rst"}
requires-python = ">=3.9"
version = "2.3.1"
[project.entry-points]
pytest11 = {"pytest-bdd" = "pytest_bdd.plugin"}
[project.optional-dependencies]
allure = [
"allure-python-commons",
"allure-pytest"
]
doc-gen = [
'docopt-ng',
'pandoc',
'panflute',
'pycmarkgfm',
'pypandoc'
]
full = [
"pytest-bdd-ng[allure]",
"pytest-bdd-ng[doc-gen]",
"pytest-bdd-ng[struct-bdd]",
"pytest-bdd-ng[test]",
"pytest-bdd-ng[testtypes]"
]
struct-bdd = [
"hjson",
"json5",
"pyhocon",
'tomli;python_version<"3.11.0"',
"PyYAML",
"types-PyYAML"
]
test = [
"allure-python-commons-test",
"execnet",
"packaging",
"PyHamcrest",
"pytest-httpserver",
"python-coveralls",
"pytest-bdd-ng[doc-gen];python_version>='3.12.0'"
]
testenv = [
"tox~=4.0",
"codecov"
]
testtypes = [
"mypy",
"types-certifi",
"types-docopt",
"types-setuptools"
]
[project.scripts]
bdd_tree_to_rst = "pytest_bdd.script.bdd_tree_to_rst:main"
[project.urls]
Documentation = "https://pytest-bdd-ng.readthedocs.io/en/default/"
Repository = "https://github.com/elchupanebrej/pytest-bdd-ng"
[tool.black]
line-length = 120
target-version = ["py39", "py310", "py311", "py312", "py313"]
verbose = true
[tool.isort]
line_length = 120
multi_line_output = 3
profile = "black"
[tool.mypy]
files = "src/pytest_bdd/**/*.py"
install_types = true
non_interactive = true
plugins = [
"pydantic.mypy"
]
show_error_codes = true
warn_return_any = true
warn_unused_configs = true
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = [
"allure_commons.*",
"allure_pytest.*",
"attr.*",
"ci_environment.*",
"cucumber_expressions.*",
"cucumber_tag_expressions.*",
"decopatch.*",
"execnet.*",
"gherkin.*",
"hjson",
"json5",
"makefun",
"mako.*",
"ordered_set",
"parse",
"parse_type.*",
"pluggy.*",
"_pytest.*",
"pyhocon",
"pytest.*",
"yaml.*"
]