forked from pchomik/pytest-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (46 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
[tool.poetry]
name = "pytest-spec"
version = "3.2.0"
description = "Library pytest-spec is a pytest plugin to display test execution output like a SPECIFICATION."
readme = "README.md"
authors = ["Pawel Chomicki <pawel.chomicki@gmail.com>"]
license = "GPL-2.0-or-later"
homepage = "https://github.com/pchomik/pytest-spec"
repository = "https://github.com/pchomik/pytest-spec"
keywords = ["pytest", "test", "unittest", "spec"]
classifiers = [
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing",
"Topic :: Utilities"
]
packages = [
{ include = "pytest_spec" },
{ include = "test", format = "sdist" },
]
include = ["LICENSE.txt"]
[tool.poetry.dependencies]
python = ">=3.5"
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-describe = "*"
pytest-flake8 = "*"
pytest-cov = "*"
wheel = "*"
twine = "*"
[tool.poetry.plugins.pytest11]
pytest_spec = "pytest_spec.plugin"
[tool.poetry2conda]
name = "pytest-spec-env"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"