-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 917 Bytes
/
Copy pathpyproject.toml
File metadata and controls
51 lines (45 loc) · 917 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[project]
name = "labs"
version = "0.1.0"
description = "Проект с лабораторными работами по програмированию и алгоритмизации"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"openpyxl>=3.1.5",
"pre-commit>=4.4.0",
]
[dependency-groups]
dev = [
"black>=25.11.0",
"isort>=7.0.0",
"pre-commit>=4.4.0",
"pytest>=9.0.1",
]
[tool.black]
line-length = 88
target-version = ["py313"]
extend-exclude = '''
(
^\.(venv|env)/|
^data/|
^images/|
^__pacache__/|
^.pytest_cache/
)
'''
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "--maxfail=3 --disable-warnings -ra"
testpaths = [
"src",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["lib*"]