-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from pelican-plugins/replace-poetry-with-pdm
- Loading branch information
Showing
13 changed files
with
202 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"template": "https://github.com/getpelican/cookiecutter-pelican-plugin", | ||
"commit": "f9a088515d09675d433595982ae643c3fe323c50", | ||
"checkout": null, | ||
"context": { | ||
"cookiecutter": { | ||
"plugin_name": "Similar Posts", | ||
"repo_name": "similar-posts", | ||
"package_name": "similar_posts", | ||
"distribution_name": "pelican-similar-posts", | ||
"version": "1.0.0", | ||
"description": "Pelican plugin to add similar posts to articles, based on a vector space model", | ||
"authors": "{name = \"David Lesieur\", email = \"[email protected]\"}", | ||
"keywords": "\"pelican\", \"plugin\", \"similarity\", \"tf-idf\", \"tags\", \"gensim\", \"vector-space-model\", \"algebraic-model\", \"numpy\", \"scipy\"", | ||
"readme": "README.md", | ||
"contributing": "CONTRIBUTING.md", | ||
"license": "GNU General Public License v3|GPL-3.0-only", | ||
"repo_url": "https://github.com/pelican-plugins/similar-posts", | ||
"dev_status": "5 - Production/Stable", | ||
"tests_exist": true, | ||
"python_version": ">=3.8.1,<4.0", | ||
"pelican_version": ">=4.5", | ||
"_template": "https://github.com/getpelican/cookiecutter-pelican-plugin" | ||
} | ||
}, | ||
"directory": null | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
--- | ||
|
||
github: justinmayer | ||
custom: https://donate.getpelican.com | ||
liberapay: pelican |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
poetry.lock | ||
.pdm-python | ||
pdm.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,3 @@ CHANGELOG | |
------------------ | ||
|
||
Initial release as namespace plugin | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
from .similar_posts import * # NOQA | ||
from .similar_posts import * # noqa: F403,PGH004,RUF100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.