forked from vianalabs/vianalabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (46 loc) · 889 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
49
50
[project]
name = "VianaLabs"
version = "0.1.0"
description = "Official repository of Viana Labs, a web development agency based in Portugal, specializing in modern and responsive digital solutions."
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Viana Labs", email = "[email protected]" }
]
dependencies = [
"flask",
"docker",
]
[project.optional-dependencies]
test = [
"flake8",
"black",
"isort",
"selenium",
"webdriver-manager",
]
[tool.flake8]
exclude = [".venv", "build"]
max-line-length = 79
[tool.black]
line-length = 79
target-version = ["py38", "py310"]
exclude = '''
/(
\.eggs
| \.git
| \.venv
| _build
| build
| dist
| migrations
)/
'''
[tool.isort]
profile = "black"
src_paths = ["app"]
multi_line_output = 3
line_length = 79
force_grid_wrap = 0
use_parentheses = true
include_trailing_comma = true