-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (61 loc) · 1.15 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[tool.poetry]
name = "app"
version = "0.1.0"
description = "DTA web app."
authors = ["Artyom <[email protected]> and Contributors"]
[tool.poetry.dependencies]
python = "^3.10"
Flask = "2.0.2"
Jinja2 = "3.0.3"
SQLAlchemy = "1.4.29"
Flask-WTF = "1.0.0"
alembic = "1.7.5"
radon = "5.1.0"
waitress = "2.0.0"
pycodestyle = "2.8.0"
[tool.poetry.dev-dependencies]
beautifulsoup4 = "4.10.0"
isort = "5.9.3"
pytest = "7.0.1"
pytest-cov = "3.0.0"
pytest-alembic = "0.7.0"
Pillow = "9.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
line_length = "79"
multi_line_output = "5"
lines_after_imports = "2"
include_trailing_comma = "true"
use_parentheses = "true"
skip = [
".git",
"webapp/alembic/versions"
]
skip_glob = [
".venv",
"venv*"
]
default_section = "THIRDPARTY"
src_paths = "webapp"
known_flask = "flask"
sections = [
"FUTURE",
"STDLIB",
"THIRDPARTY",
"FLASK",
"FIRSTPARTY",
"LOCALFOLDER"
]
[tool.pytest.ini_options]
addopts = "--cov=webapp --cov-report xml"
testpaths = [
"tests"
]
filterwarnings = [
"default",
"error"
]
log_cli="true"
log_level="NOTSET"