-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (51 loc) · 1.2 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
[tool.poetry]
name = "app"
version = "0.1.0"
description = ""
authors = ["Filips Nastins <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.9"
Flask = "^2.1.2"
Flask-SQLAlchemy = "^2.5.1"
SQLAlchemy = "^1.4.37"
flask-executor = "^1.0.0"
gunicorn = "^21.2.0"
psycopg2 = "^2.9.3"
pydantic = "^1.9.1"
structlog = "^21.5.0"
[tool.poetry.dev-dependencies]
autoflake = "^1.4"
bandit = "^1.7.4"
black = "^22.3.0"
colorama = "^0.4.4"
flake8 = "^4.0.1"
isort = "^5.10.1"
locust = "^2.21.0"
mypy = "^0.961"
pre-commit = "^2.19.0"
pylint = "^2.14.1"
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
[tool.poetry.scripts]
hooks = "dev_commands:hooks"
format = "dev_commands:format"
lint = "dev_commands:lint"
test = "dev_commands:test"
test-cov-term = "dev_commands:test_cov_term"
test-cov-html = "dev_commands:test_cov_html"
test-ci = "dev_commands:test_ci"
[tool.black]
line-length = 100
target-version = ['py39']
include = '\.pyi?$'
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "6.0"
junit_family = "xunit2"
testpaths = ["tests"]
norecursedirs = [".venv", "__pycache__", ".git"]
log_cli_level = "INFO"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"