-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (39 loc) · 903 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
[tool.mypy]
strict_optional = false
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts= """
--html=test_results/results.html \
--self-contained-html \
--junitxml=test_results/results.xml \
--disable-warnings
"""
log_file_level="INFO"
[tool.ruff.lint]
# Enable Pyflakes `E` and `F` codes by default.
select = ["E", "F", "PL", "YTT", "I"]
ignore = ["E501", "PLR2004"]
fixable = ["I"]
[tool.ruff.lint.pylint]
max-args = 10
[tool.isort]
profile = "black"
[tool.poetry]
name = "lab"
version = "0.1.0"
description = ""
authors = ["Ivan Lee <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
mkdocs = "^1.5.3"
mkdocs-material = "^9.5.4"
pre-commit = "^4.0.0"
diagrams = "^0.24.0"
black = "^24.1.0"
ruff = "^0.8.0"
isort = "^5.13.2"
mypy = "^1.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"