-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 971 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (29 loc) · 971 Bytes
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
[tool.poetry]
name = "pytest_matrix"
version = "0.7.7"
description = "Provide tools for generating tests from combinations of fixtures."
authors = ["dburton90 <daniel.barton@seznam.cz>"]
license = "GPL-3.0"
repository = "https://github.com/dburton90/pytest_matrix.git"
readme = "README.rst"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Framework :: Pytest',
'Topic :: Software Development :: Testing',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries',
]
[tool.poetry.dependencies]
python = "^3.6"
pytest-lazy-fixture = "^0.6.3"
pytest = "^5.4.3"
[tool.poetry.dev-dependencies]
pygments = "^2.6.1"
[tool.poetry.plugins."pytest11"]
"matrix" = "pytest_matrix.plugin"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"