-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (48 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
57 lines (48 loc) · 1.12 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
52
53
54
55
56
57
[project]
name = "re_plugin_pack"
version = "2025.6.1"
description = "Plugin pack for render-engine static site generator"
readme = "README.md"
authors = [{name = "Dan Shernicoff", email = "dan@brassnet.biz"}]
license = "MIT"
license-files = ["LICENSE.md"]
requires-python = ">=3.10"
dependencies = [
"render-engine>=2025.6.1",
]
[dependency-groups]
dev = [
"coverage>=7.8.0",
"freezegun>=1.5.2",
"pytest>=8.4.0",
"uv-build>=0.7.12,<0.8.0",
"ruff",
"pre-commit>=4.2.0",
]
[project.urls]
homepage = "https://github.com/brass75/re-plugin-pack"
Repository = "https://github.com/brass75/re-plugin-pack"
[tool.ruff]
target-version = "py312"
# Allow lines to be as long as 120 characters.
line-length = 120
lint.select = [
"E", # pycodestyle
"F", # pyflakes
"UP", # pyupgrade
"I", # imports
]
lint.ignore = [
]
# Allow fix for all enabled rules (when `--fix`) is provided.
lint.fixable = ["ALL"]
lint.unfixable = []
exclude = [
]
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
docstring-code-format = true
[build-system]
requires = ["uv_build>=0.7.12,<0.8.0"]
build-backend = "uv_build"