-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (33 loc) · 913 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "greeter"
version = "0.1.0"
description = "Python template"
license = "MIT"
authors = ["Florian Vazelle <[email protected]>"]
readme = ["README.md"]
repository = "https://github.com/MechanicalFlower/python-template"
include = ["LICENSE.md"]
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.scripts]
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
pre-commit = "^4.0.1"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/MechanicalFlower/python-template/issues"
"Changelog" = "https://github.com/MechanicalFlower/python-template/blob/main/CHANGELOG.md"
[tool.black]
target-version = ["py310"]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
[tool.ruff]
line-length = 88
[tool.mypy]
strict = true
exclude = 'tests'
[tool.bandit]
exclude_dirs = ['tests']