-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
108 lines (91 loc) · 2.19 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["flit_core==3.8.0"]
build-backend = "flit_core.buildapi"
[project]
name = "blog"
authors = [{name = "Shako Rzayev", email = "rzayev.sehriyar@gmail.com"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["version", "description"]
dependencies = [
"dependency-injector >= 4.41.0",
"flask >= 2.3.2",
"pydantic >= 2.3.0",
]
[project.urls]
Home = "https://github.com/ShahriyarR/hexagonal-flask-blog-tutorial"
[project.optional-dependencies]
dev = [
"black",
"isort",
"autoflake",
"pytype; platform_system != 'Windows'",
"flake8",
"Flake8-pyproject",
"bandit",
"flake8-bugbear",
"flake8-cognitive-complexity",
"pre-commit",
"safety",
"pip-audit",
]
test = [
"pytest",
"pytest-flask",
"pytest-cov",
]
[tool.isort]
profile = "black"
py_version = 310
line_length = 88
order_by_type = false
skip = [".gitignore", ".dockerignore"]
extend_skip = [".md", ".json"]
skip_glob = ["docs/*"]
[tool.black]
line-length = 88
target-version = ['py310']
include = '\.pyi?$'
[tool.bandit]
skips = ["B311"]
[tool.flake8]
max-line-length = 88
select = ["C", "E", "F", "W", "B", "B9"]
ignore = ["B907", "B902"]
exclude = ["__init__.py"]
[tool.pytest.ini_options]
pythonpath = [
"src"
]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: marks tests as integration relatively slow (deselect with '-m \"not integration\"')",
"serial",
]
addopts = [
"--strict-markers",
"--strict-config",
"-ra",
]
testpaths = "tests"
[tool.coverage.run]
branch = true
[tool.coverage.report]
# Regexes for lines to exclude from consideration
exclude_also = [
# Don't complain about missing debug-only code:
"def __repr__",
"if self\\.debug",
# Don't complain if tests don't hit defensive assertion code:
"raise AssertionError",
"raise NotImplementedError",
# Don't complain if non-runnable code isn't run:
"if 0:",
"if __name__ == .__main__.:",
# Don't complain about abstract methods, they aren't run:
"@(abc\\.)?abstractmethod",
]
ignore_errors = true
[tool.coverage.html]
directory = "htmlcov"