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"
7- readme = " README.md"
87keywords = [" pelican" , " plugin" , " linkback" , " pingback" , " trackback" , " webmention" ]
9- repository = " https://github.com/pelican-plugins/linkbacks "
10- packages = [{ include = " pelican " }]
8+
9+ readme = " README.md "
1110include = [" CHANGELOG.md" , " README.md" ]
1211
12+ dependencies = [
13+ " beautifulsoup4>=4.14.3" ,
14+ " requests>=2.32.5"
15+ ]
16+
17+ authors = [
18+ { name = " Lucas Cimon (@Lucas-C)" }
19+ ]
20+
1321classifiers = [
1422 " Development Status :: 5 - Production/Stable" ,
1523 " Environment :: Console" ,
@@ -22,29 +30,22 @@ classifiers = [
2230 " Topic :: Software Development :: Libraries :: Python Modules" ,
2331]
2432
25- [tool .poetry .urls ]
33+ repository = " https://github.com/pelican-plugins/linkbacks"
34+
35+ [project .urls ]
2636"Documentation" = " https://docs.getpelican.com/"
27- "Funding" = " https://donate.getpelican.com/"
2837"Source" = " https://github.com/pelican-plugins/linkbacks"
2938"Tracker" = " https://github.com/pelican-plugins/linkbacks/issues"
3039
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+ [tool .poetry ]
41+ packages = [ { include = " pelican" } ]
4042
4143[tool .poetry .group .dev .dependencies ]
4244pelican = " ^4.11.0"
4345markdown = " ^3.10.0"
4446httpretty = " ^1.1.4"
4547pylint = " ^4.0.4"
4648pytest = " ^9.0.2"
47- # pytest = "^7.2.1"
4849
4950[build-system ]
5051requires = [" poetry>=1.0" ]
0 commit comments