-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 731 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 731 Bytes
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
[project]
name = "davidbingmann.de"
version = "1.0.0"
description = "my personal website"
requires-python = ">=3.13"
dependencies = [
"fh-bootstrap>=0.0.3",
"frontmatter>=3.0.8",
"markdown-it-py[plugins]>=3.0.0",
"mdit-py-plugins>=0.4.2",
"python-fasthtml>=0.12.0",
"uvicorn>=0.34.0",
]
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"davidbingmann_de" = ["assets/*"]
[tool.ruff]
line-length = 120
indent-width = 4
target-version = "py312"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.ruff.lint]
ignore = [
"F403",
"F405"
]
fixable = ["ALL"]