forked from bjoernricks/work-shop-wednesday
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (47 loc) · 999 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
[tool.poetry]
name = "work-shop-wednesday"
version = "0.1.0"
description = "Wednesday Workshops"
authors = ["Björn Ricks <bjoern.ricks@greenbone.net>"]
license = "GPL-3.0-or-later"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
Sphinx = "^5.2.3"
furo = "^2022.9.29"
myst-parser = "^0.18.1"
sphinx-copybutton = "^0.5.0"
sphinxcontrib-mermaid = "^0.7.1"
sphinx-autobuild = "^2021.3.14"
[tool.poetry.group.dev.dependencies]
autohooks-plugin-pylint = ">=22.8.1"
autohooks-plugin-black = ">=22.8.1"
autohooks-plugin-isort = ">=22.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 80
target-version = ['py39', 'py310']
exclude = '''
/(
\.git
| \.venv
| \.github
| \.vscode
| _build
| build
| dist
| docs
)/
'''
[tool.isort]
profile = "black"
line_length = 80
[tool.autohooks]
mode = "poetry"
pre-commit = [
'autohooks.plugins.black',
'autohooks.plugins.isort',
'autohooks.plugins.pylint',
]