-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (37 loc) · 893 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "cookiecutter-pyproject"
description = "Project for scaffolding a `python` package or project structure."
version = "0.1.0"
readme = "README.md"
authors = ["yakimka <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
cookiecutter = "^2.6"
[tool.poetry.dev-dependencies]
flake8 = "^5.0.4"
pytest = "^8.3.3"
tomlkit = "^0.13.2"
binaryornot = "^0.4.4"
flake8-pytest-style = "^1.7.2"
pytest-cookies = "^0.7.0"
[tool.pytest.ini_options]
# Directories that are not visited by pytest collector:
norecursedirs = [
"{{cookiecutter.project_name}}",
"hooks",
".git",
"__pycache__",
]
# Strict `@xfail` by default:
xfail_strict = true
# Extra options:
addopts = [
"--strict-markers",
"--strict-config",
"--tb=short",
"--doctest-modules",
]