-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (79 loc) · 2.36 KB
/
pyproject.toml
File metadata and controls
89 lines (79 loc) · 2.36 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[project]
name = "abx-plugins"
version = "1.10.30"
description = "ArchiveBox-compatible plugin suite (hooks, configs, binaries manifests)"
authors = [{name = "Nick Sweeting"}, {name = "ArchiveBox"}]
requires-python = ">=3.11"
license = {text = "MIT"}
readme = "README.md"
keywords = ["archivebox", "plugins", "web-archiving", "hooks", "scraping"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Environment :: Console",
]
dependencies = [
"abxpkg>=1.10.4",
"jambo>=0.1.7",
"rich-click>=1.9.7",
"uv>=0.8.22",
]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-httpserver>=1.1.0",
"feedparser>=6.0.0",
"requests>=2.28.0",
"jinja2>=3.1.0",
"prek>=0.3.6",
"pyright>=1.1.408",
"ty>=0.0.18",
"ruff>=0.15.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
include = ["abx_plugins/**", "README.md", "LICENSE", "pyproject.toml", "**/*.py"]
[tool.hatch.build.targets.sdist]
include = ["abx_plugins/**", "README.md", "LICENSE", "pyproject.toml", "**/*.py"]
[project.urls]
Homepage = "https://github.com/ArchiveBox/abx-plugins"
Source = "https://github.com/ArchiveBox/abx-plugins"
Documentation = "https://github.com/ArchiveBox/ArchiveBox"
"Bug Tracker" = "https://github.com/ArchiveBox/abx-plugins/issues"
[tool.pytest.ini_options]
testpaths = ["abx_plugins/plugins", "tests"]
addopts = ["-p", "abx_plugins.pytest_bootstrap", "-p", "no:cacheprovider"]
[tool.uv]
exclude-newer = "14 days"
exclude-newer-package = { abxpkg = "1 second", abx-plugins = "1 second" }
[tool.pyright]
include = [
"abx_plugins",
"tests",
]
extraPaths = [
"abxpkg",
"../abxpkg",
]
exclude = [
".venv",
"**/*.pyi",
"**/node_modules",
"**/__pycache__",
]
reportMissingImports = true
reportMissingTypeStubs = false
pythonVersion = "3.11"
pythonPlatform = "Linux"
[tool.codespell]
ignore-words-list = "abx,bu,wit,dont,cant,wont,re-use,re-used,re-using,re-usable,thats,doesnt,fith,FitH,doubleclick,administrar"
skip = "*.json"