-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
46 lines (33 loc) · 934 Bytes
/
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
[tool.poetry]
name = 'pytest-lambda'
version = "2.2.1"
description = 'Define pytest fixtures with lambda functions.'
license = 'MIT'
authors = [
'Zach "theY4Kman" Kanzler <[email protected]>'
]
readme = 'README.md'
repository = 'https://github.com/theY4Kman/pytest-lambda'
homepage = 'https://github.com/theY4Kman/pytest-lambda'
keywords = ['pytest']
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Framework :: Pytest',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Testing',
]
[tool.poetry.dependencies]
python = '^3.8.0'
pytest = '>=3.6, <9'
wrapt = '^1.11.0'
[tool.poetry.dev-dependencies]
mypy = "^0.971"
pytest-asyncio = "*"
pytest-markdown-docs = "*"
tox = "^3.12"
[tool.poetry.plugins."pytest11"]
lambda = "pytest_lambda.plugin"
[build-system]
requires = ['poetry>=0.12']
build-backend = 'poetry.masonry.api'