moved the *.py files to pelican/plugins/activitypub

we want them to install in the pelican package in other projects
This commit is contained in:
Tobias Schmidl 2024-10-15 09:35:07 +02:00
parent 21207918bb
commit 803abfaf97
3 changed files with 5 additions and 2 deletions

View file

@ -12,7 +12,7 @@ from pelican import signals
log = logging.getLogger(__name__)
__version__ = '0.1.1'
__version__ = '0.1.2'
pagination = 25

View file

@ -4,7 +4,7 @@
[project]
name = "pelican-plugin-activitypub"
version = "0.1.1"
dynamic = ["version"]
description = "Pelican plugin implementing Activitypub"
authors = [{name = "s3lph", email = "s3lph@kabelsalat.ch"}, {name = "Tobias Schmidl", email = "tobias@schmidl.dev"}]
license = { text = "MIT" }
@ -37,3 +37,6 @@ Tracker = "https://git.kabelsalat.ch/s3lph/pelican-plugin-activitypub/issues"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "pelican.plugins.activitypub.activitypub.__version__"}