Skip to content

Commit 8ffa686

Browse files
committed
Minor pyproject.toml update
1 parent a37806f commit 8ffa686

File tree

2 files changed

+15
-21
lines changed

2 files changed

+15
-21
lines changed

poetry.lock

Lines changed: 3 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,24 @@
1-
[tool.poetry]
1+
[project]
22
name = "pelican-plugin-linkbacks"
33
version = "1.0.5"
44
description = "Pelican plugin implementing Linkback protocols, on the linking server side"
5-
authors = ["Lucas Cimon <[email protected]>"]
5+
requires-python = ">=3.10, <=3.14"
66
license = "AGPL-3.0"
77
readme = "README.md"
88
keywords = ["pelican", "plugin", "linkback", "pingback", "trackback", "webmention"]
99
repository = "https://github.com/pelican-plugins/linkbacks"
1010
packages = [{ include = "pelican" }]
1111
include = ["CHANGELOG.md", "README.md"]
1212

13+
dependencies = [
14+
"beautifulsoup4>=4.14.3",
15+
"requests>=2.32.5"
16+
]
17+
18+
authors = [
19+
{ name = "Lucas Cimon (@Lucas-C)" }
20+
]
21+
1322
classifiers = [
1423
"Development Status :: 5 - Production/Stable",
1524
"Environment :: Console",
@@ -22,29 +31,17 @@ classifiers = [
2231
"Topic :: Software Development :: Libraries :: Python Modules",
2332
]
2433

25-
[tool.poetry.urls]
34+
[project.urls]
2635
"Documentation" = "https://docs.getpelican.com/"
27-
"Funding" = "https://donate.getpelican.com/"
2836
"Source" = "https://github.com/pelican-plugins/linkbacks"
2937
"Tracker" = "https://github.com/pelican-plugins/linkbacks/issues"
3038

31-
[tool.poetry.dependencies]
32-
python = ">=3.10, <= 3.14"
33-
beautifulsoup4 = "^4.14.3"
34-
requests = "^2.32.5"
35-
36-
[tool.poetry.dev-dependencies]
37-
38-
[tool.poetry.extras]
39-
markdown = ["markdown"]
40-
4139
[tool.poetry.group.dev.dependencies]
4240
pelican = "^4.11.0"
4341
markdown = "^3.10.0"
4442
httpretty = "^1.1.4"
4543
pylint = "^4.0.4"
4644
pytest = "^9.0.2"
47-
#pytest = "^7.2.1"
4845

4946
[build-system]
5047
requires = ["poetry>=1.0"]

0 commit comments

Comments
 (0)