-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
74 lines (64 loc) · 1.17 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[tool.bandit]
exclude_dirs = ["tests"]
[tool.black]
line-length = 80
target-version = ["py310"]
include = '.pyi?$'
[tool.coverage.report]
skip_empty = true
fail_under = 100
show_missing = true
skip_covered = true
exclude_also = [
"@(abc\\.)?abstractmethod",
]
[tool.poetry]
name = "python-lessons"
version = "0.1.0"
description = "Python lessons"
authors = ["Javier Gil <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
mkdocs = "^1.5.2"
mkdocstrings = {extras = ["python"], version = "^0.23.0"}
mkdocs-material = "^9.2.8"
mkdocs-git-revision-date-localized-plugin = "^1.2.4"
loguru = "^0.7.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
pytest-cov = "^4.1.0"
ipdb = "^0.13.13"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 80
exclude = [
".git",
"__pycache__",
".tox",
".mypy_cache",
".venv",
]
lint.select = [
"F",
"E",
"W",
"I",
"N",
"D",
"COM",
"DTZ",
"G",
"T20",
"Q",
"RET",
"ARG",
"PL"
]
[tool.ruff.lint.flake8-quotes]
inline-quotes = "double"
docstring-quotes = "double"
[tool.ruff.lint.pydocstyle]
convention = "google"