-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (41 loc) · 993 Bytes
/
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
[tool.poetry]
name = "hexlet-code"
version = "0.1.0"
description = ""
authors = ["KAnanev <[email protected]>"]
readme = "README.md"
packages = [{include = "page_analyzer"}]
[tool.poetry.dependencies]
python = "^3.10"
flask = "^2.3.2"
gunicorn = ">=20.1,<23.0"
python-dotenv = "^1.0.0"
validators = "^0.20.0"
psycopg = "^3.1.9"
pydantic = "^2.0"
requests = "^2.31.0"
beautifulsoup4 = "^4.12.2"
psycopg2-binary = "^2.9.6"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
flake8-pyproject = "^1.2.3"
pytest = "^7.3.1"
coverage = "^7.2.7"
pytest-cov = "^4.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.flake8]
accept-encodings = "utf-8"
max-complexity = 5
statistics = "False"
max-line-length = 80
enable-extensions = "G"
isort-show-traceback = "True"
exclude = ".venv,dist,build"
per-file-ignores = "__init__.py: F401"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
default_section = "FIRSTPARTY"
line_length = 80