-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (49 loc) · 1.57 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.report]
exclude_lines = ["pragma: no cover","assert False[,^]","never_called\\(","if False:"]
[tool.coverage.run]
source = ["src","tests","codecrumbs"]
parallel = true
branch = true
data_file = "$TOP/.coverage"
[tool.poetry]
name = "codecrumbs"
version = "0.1.0"
description = "leave codecrumbs behind so that other can adopt the changes"
authors = ["Frank Hoffmann <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/15r10nk/codecrumbs"
homepage = "https://github.com/15r10nk/codecrumbs"
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation :: CPython",
]
[tool.poetry.dependencies]
python = "^3.8"
executing = {version="^1.2.0", python=">=3.11"}
asttokens = {version="^2.2.1", python=">=3.11"}
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
inline-snapshot = "^0.1.1"
coverage = {extras = ["toml"], version = "^6.5.0"}
patch = "^1.16"
mypy = "^0.990"
pytest-cov = "^4.0.0"
coverage-enable-subprocess = "^1.0"
[tool.poetry.group.doc.dependencies]
mkdocs = "^1.4.2"
mkdocs-material = "^8.5.10"
mkdocstrings = {extras = ["python-legacy"], version = "^0.19.0"}
[tool.poetry.plugins.pytest11]
codecrumbs = "codecrumbs.pytest_plugin"
[tool.poetry.scripts]
codecrumbs = "codecrumbs.__main__:main"
[tool.pytest.ini_options]
xfail_strict = true