-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (87 loc) · 2.5 KB
/
pyproject.toml
File metadata and controls
99 lines (87 loc) · 2.5 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
90
91
92
93
94
95
96
97
98
99
[project]
name = "abx-plugins"
version = "1.10.22"
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 = [
"abx-pkg>=1.9.20",
"jambo>=0.1.7",
"rich-click>=1.9.7",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.2",
"pytest-httpserver>=1.1.0",
"feedparser>=6.0.0",
"requests>=2.28.0",
"jinja2>=3.1.0",
"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 = { abx-pkg = "1 second"}
[tool.uv.sources]
abx-pkg = { path = "../abx-pkg", editable = true }
[tool.pyright]
include = [
"abx_plugins",
"tests",
]
extraPaths = [
"abx-pkg",
"../abx-pkg",
"abx-dl",
"../abx-dl",
"archivebox",
"../archivebox",
]
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"
[dependency-groups]
dev = [
"prek>=0.3.6",
]