-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
51 lines (43 loc) · 1.06 KB
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
[project]
name = "codetri-notes"
description = "An accidental static blog site generator"
authors = [{ name = "Caleb", email = "le717@users.noreply.github.com" }]
license = "MIT"
readme = "README.md"
version = "0.1.0"
requires-python = ">=3.11"
dynamic = ["dependencies"]
[tool.poetry]
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
jinja2 = "^3.1.5"
minify-html = "^0.15.0"
markdown-it-py = { extras = ["linkify", "plugins"], version = "^3.0.0" }
feedgen = "^1.0.0"
[tool.poetry.group.dev.dependencies]
ruff = "*"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
indent-width = 4
line-length = 100
[tool.ruff.format]
preview = true
line-ending = "native"
indent-style = "space"
quote-style = "double"
[tool.ruff.lint]
extend-ignore = ["TD002"]
extend-select = [
"ERA", # eradicate
"I", # isort,
"TD", # flake8-todos
"PTH", # flake8-use-pathlib
"UP", # pyupgrade
"SIM", # flake8-simplify
]
[tool.ruff.lint.isort]
lines-after-imports = 2
extra-standard-library = ["tomllib", "zoneinfo"]