-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (45 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
55 lines (45 loc) · 1.47 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
[project]
name = "pelican-plugin-linkbacks"
version = "1.0.6"
description = "Pelican plugin implementing Linkback protocols, on the linking server side"
requires-python = ">=3.10, <=3.14"
license = "AGPL-3.0"
keywords = ["pelican", "plugin", "linkback", "pingback", "trackback", "webmention"]
readme = "README.md"
include = ["CHANGELOG.md", "README.md"]
dependencies = [
"beautifulsoup4>=4.14.3",
"requests>=2.32.5"
]
authors = [
{ name = "Lucas Cimon (@Lucas-C)" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: Pelican",
"Framework :: Pelican :: Plugins",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
repository = "https://github.com/pelican-plugins/linkbacks"
[project.urls]
"Documentation" = "https://docs.getpelican.com/"
"Source" = "https://github.com/pelican-plugins/linkbacks"
"Tracker" = "https://github.com/pelican-plugins/linkbacks/issues"
[tool.poetry]
packages = [ { include = "pelican" } ]
[tool.poetry.group.dev.dependencies]
pelican = "^4.11.0"
markdown = "^3.10.0"
httpretty = "^1.1.4"
pylint = "^4.0.4"
pytest = "^9.0.2"
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"
[tool.pytest.ini_options]
testpaths = ["pelican/plugins/linkbacks"]