-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 982 Bytes
/
Copy pathpyproject.toml
File metadata and controls
54 lines (47 loc) · 982 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
52
53
[project]
name = "mrsendman"
version = "0.1.0"
description = ""
authors = [
{name = "Ekaterina Chernyshova",email = "newfatto@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"django (>=6.0,<7.0)",
"dotenv (>=0.9.9,<0.10.0)",
"psycopg2 (>=2.9.11,<3.0.0)",
"pillow (>=12.0.0,<13.0.0)",
"redis (>=7.1.0,<8.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.lint.dependencies]
flake8 = "^7.3.0"
isort = "^7.0.0"
mypy = "^1.19.0"
black = "^25.11.0"
[tool.isort]
# максимальная длина строки
line_length = 119
[tool.mypy]
disallow_untyped_defs = true # Будет требовать аннотации для всех функций
no_implicit_optional = true
warn_return_any = true
exclude = 'venv'
[tool.black]
line-length = 119
exclude = '''
(
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| dist
)/
)
'''