-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (66 loc) · 1.52 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
67
68
69
70
71
72
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "trekroner-docs"
version = "0.1.0"
description = "Sphinx documentation for the Trekroner project."
authors = ["Willeke A'Campo (linux vdi) <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
jupyter = "^1.0.0"
sphinx = "7.2.6"
sphinx-autodoc-typehints = "1.25.2"
sphinx-copybutton = "0.5.2"
sphinx-rtd-theme = "2.0.0"
sphinxcontrib-applehelp = "1.0.7"
sphinxcontrib-devhelp = "1.0.5"
sphinxcontrib-htmlhelp = "2.0.4"
sphinxcontrib-jquery = "4.1"
sphinxcontrib-jsmath = "1.0.1"
sphinxcontrib-qthelp = "1.0.6"
sphinx-book-theme = {git = "https://github.com/executablebooks/sphinx-book-theme.git", rev = "1ae499bac6b2d3472280cbc84cb1aff51fa156aa"}
sphinxcontrib-serializinghtml = "1.1.9"
nbsphinx = "^0.9.3"
myst-parser = "^2.0.0"
sphinx-material = "^0.0.36"
sphinxcontrib-xlsxtable = "^1.1.1"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
isort = "^5.12.0"
ruff = "^0.0.286"
pyment = "^0.3.3"
pytest = "^7.4.0"
[tool.black]
# https://github.com/psf/black
line-length = 88
color = true
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| env
| venv
)/
'''
[tool.isort]
# https://pycqa.github.io/isort/docs/configuration/black_compatibility.html
profile = "black"
[tool.ruff]
# https://beta.ruff.rs/docs/settings
fix = true
ignore = ["E501"]
exclude = [
".git",
".env",
".venv"
]