-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (63 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
75 lines (63 loc) · 1.45 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[project]
name = "pelican-to-sqlite"
dynamic = ["version"]
description = "A Pelican Plugin for outputting your Pelican posts into a SQLite Database"
readme = "README.md"
authors = [{name = "Ryan Cheley"}]
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 4 - Beta"
]
dependencies = [
"sqlite-utils",
"click",
"html2text",
"pelican"
]
requires-python = ">=3.9"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project.urls]
Issues = "https://github.com/ryancheley/pelican-to-sqlite/issues"
CI = "https://github.com/ryancheley/pelican-to-sqlite/actions"
Changelog = "https://github.com/ryancheley/pelican-to-sqlite/releases"
[project.optional-dependencies]
test = [
"pytest",
"coverage",
"mypy",
]
docs = [
"mkdocs",
"mkdocstrings[python]",
"markdown-include",
]
dev = [
"packaging",
"ruff",
]
[tool.hatch.build.targets.wheel]
packages = ["pelican"]
[tool.hatch.version]
source = "vcs"
fallback-version = "0.6.3"
[tool.hatch.build.hooks.vcs]
version-file = "pelican/plugins/pelican_to_sqlite/_version.py"
[tool.ruff]
line-length = 130
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = []
[tool.ruff.lint.per-file-ignores]
"*/_version.py" = ["UP035", "UP006", "I001"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[dependency-groups]
dev = [
"build>=1.2.2.post1",
"pre-commit>=4.2.0",
"twine>=6.1.0",
]