-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.27 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
[tool.poetry]
name = "pytest-locker"
version = "0.2.5"
description = """ \
Used to lock object during testing. \
Essentially changing assertions from being hard coded to asserting that nothing changed \
"""
authors = ["Luttik <dtluttik@gmail.com>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/Luttik/pytest-locker"
homepage = "https://pytest-locker.daanluttik.nl"
documentation = "https://pytest-locker.daanluttik.nl"
include = ["src/pytest_locker/py.typed"]
[tool.poetry.dependencies]
python = "^3.9"
pytest = ">=5.4"
[tool.poetry.dev-dependencies]
invoke = ">=1.4.1"
black = ">=24.10.0"
flake8 = ">=3.8.2"
flake8-annotations = ">=2.0.1"
isort = ">=4.3.21"
coverage = { extras = ["toml"], version = ">=5.0.4" }
pytest-cov = ">=2.8.1"
codecov = ">=2.0.22"
mypy = ">=1.13.0" # mypy isn't yet working for python 3.10
pydantic = "^1.7.3"
mkdocs = "^1.2.2"
mkdocs-material = "^7.2.6"
[tool.isort]
include_trailing_comma = true
line_length = 88
use_parentheses = true
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["pytest_locker"]
[tool.coverage.report]
show_missing = true
fail_under = 100
exclude_lines = ["raise NotImplementedError"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"