-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (46 loc) · 1013 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
51
52
53
54
55
56
[tool.poetry]
name = "py-generic-boilerplate"
version = "0.1.0"
description = "Boilerplate to kick-off your python service."
authors = ["Aleksandar Babic <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
python-dotenv = "^1.0.1"
[tool.poetry.group.dev.dependencies]
isort = "^5.13.2"
flake8 = "^7.0.0"
radon = "^6.0.1"
bandit = "^1.7.8"
assertpy = "^1.1"
pytest = "^8.1.1"
pytest-cov = "^5.0.0"
responses = "^0.25.0"
mypy = "^1.9.0"
requests = "^2.31.0"
types-jsonschema = "^4.21.0.20240331"
pre-commit = "^3.7.0"
safety = "^3.1.0"
black = "^24.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[virtualenvs]
in-project = true
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
[tool.mypy]
files = "src"
strict = true
implicit_reexport = true
[[tool.mypy.overrides]]
module = []
ignore_missing_imports = true
[tool.flake8]
max-line-length = 120
[tool.bandit]
recursive = true