1- [tool . poetry ]
1+ [project ]
22name = " pelican-plugin-linkbacks"
33version = " 1.0.5"
44description = " Pelican plugin implementing Linkback protocols, on the linking server side"
5- authors =
[ " Lucas Cimon <[email protected] > " ] 5+ requires-python = " >=3.10, <=3.14 "
66license = " AGPL-3.0"
77readme = " README.md"
88keywords = [" pelican" , " plugin" , " linkback" , " pingback" , " trackback" , " webmention" ]
99repository = " https://github.com/pelican-plugins/linkbacks"
1010packages = [{ include = " pelican" }]
1111include = [" 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+
1322classifiers = [
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 ]
4240pelican = " ^4.11.0"
4341markdown = " ^3.10.0"
4442httpretty = " ^1.1.4"
4543pylint = " ^4.0.4"
4644pytest = " ^9.0.2"
47- # pytest = "^7.2.1"
4845
4946[build-system ]
5047requires = [" poetry>=1.0" ]
0 commit comments