-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 922 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 922 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "logic_processes_layer"
version = "1.2025.01.14"
requires-python = ">=3.8"
description = "Abstractions for create business logic"
readme = "README.md"
authors = [{ name = "Sergei (Gefest) Romanchuk", email = "pod.cargoes.0u@icloud.com" }]
license = { file = "LICENSE" }
urls = { homepage = "https://github.com/GefMar/logic_layer" }
classifiers = ["License :: OSI Approved :: MIT License"]
[tool.flake8]
max-line-length = 120
inline_quotes = "double"
format = "wemake"
select = ["WPS"]
ignore = [
"C", "D", "F", "DAR", "RST", "Q", "I", "S",
"WPS110", "WPS123",
"WPS201", "WPS237",
"WPS300", "WPS305", "WPS306", "WPS332",
"WPS410", "WPS412", "WPS430",
"WPS602", "WPS605"]
per-file-ignores = [
"__init__.py:WPS347, WPS440",
"*_enums.py:WPS115",
"tests/test_*.py:WPS202, WPS442",]