-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.46 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
[tool.poetry]
name = "yanashbelyak"
version = "0.1.0"
description = ""
authors = ["Alexander Rakhmaev <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
loguru = "^0.7.2"
pelican = "^4.9.1"
singleton-decorator = "^1.0.0"
markdown = "^3.5.1"
drawsvg = "^2.3.0"
ghp-import = "^2.1.0"
pillow = "^10.2.0"
pelican-embed-svg = "^0.0.3"
bs4 = "^0.0.2"
lxml = "^5.3.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.9"
pytest = "^8.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"D100", # Missing docstring in public module
"D101", # Missing docstring in public class
"D102", # Missing docstring in public method
"D103", # Missing docstring in public function
"D104", # Missing docstring in public package
"D105", # Missing docstring in magic method
"D107", # Missing docstring in __init__
"RUF001", # String contains ambiguous symbols
"RUF002", # Docstrings contains ambiguous symbols
"RUF003", # Comment contains ambiguous symbols
"ANN", # Missing type annotation. Use mypy to check types.
"COM812", # Trailing comma not allowed
"ISC001", # Single line implicit string concatenation
"TD003", # Missing issue link on the line following this TODO
"FIX002" # Line contains TODO, consider resolving the issue
]
[tool.ruff.lint.pydocstyle]
convention = "google"