From 1cca5b18b88b7d23153fde2e8f92e930b71e13a5 Mon Sep 17 00:00:00 2001 From: Simon Conseil Date: Fri, 6 Feb 2026 09:05:42 +0100 Subject: [PATCH] minor updates (packaging, license) --- LICENSE | 2 +- docs/conf.py | 2 +- pyproject.toml | 5 ++--- src/sigal/__init__.py | 2 +- src/sigal/__main__.py | 2 +- src/sigal/gallery.py | 2 +- src/sigal/image.py | 2 +- src/sigal/log.py | 2 +- src/sigal/plugins/media_page.py | 2 +- src/sigal/settings.py | 2 +- src/sigal/utils.py | 2 +- src/sigal/video.py | 2 +- src/sigal/writer.py | 2 +- 13 files changed, 14 insertions(+), 15 deletions(-) diff --git a/LICENSE b/LICENSE index a641e87..273de8f 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ The MIT License (MIT) -Copyright (c) 2009-2025 - Simon Conseil +Copyright (c) 2009-2026 - Simon Conseil Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to diff --git a/docs/conf.py b/docs/conf.py index 91bb9cb..f5539e4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -27,7 +27,7 @@ master_doc = "index" # General information about the project. project = "Sigal" -copyright = "2012-2023, Simon Conseil" +copyright = "2012-2026, Simon Conseil" # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/pyproject.toml b/pyproject.toml index bef64ae..5b4fd38 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,11 +8,11 @@ description = "Simple static gallery generator" readme = "README.rst" authors = [{name = "Simon Conseil", email = "contact@saimon.org"}] keywords = ["gallery", "static", "generator", "image", "video", "galleria"] -license = {text = "MIT License"} +license = "MIT" +license-files = ["LICENSE"] classifiers = [ "Development Status :: 5 - Production/Stable", "Environment :: Console", - "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Topic :: Internet :: WWW/HTTP", @@ -45,7 +45,6 @@ documentation = "https://sigal.readthedocs.io/en/latest/" [tool.setuptools] include-package-data = true -license-files = ["LICENSE"] [tool.setuptools.packages.find] where = ["src"] diff --git a/src/sigal/__init__.py b/src/sigal/__init__.py index b300acc..96c668d 100644 --- a/src/sigal/__init__.py +++ b/src/sigal/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2009-2023 - Simon Conseil +# Copyright (c) 2009-2026 - Simon Conseil # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to diff --git a/src/sigal/__main__.py b/src/sigal/__main__.py index 05b7ddf..734463e 100644 --- a/src/sigal/__main__.py +++ b/src/sigal/__main__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2009-2023 - Simon Conseil +# Copyright (c) 2009-2026 - Simon Conseil # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to diff --git a/src/sigal/gallery.py b/src/sigal/gallery.py index 97656a6..eed4a41 100644 --- a/src/sigal/gallery.py +++ b/src/sigal/gallery.py @@ -1,4 +1,4 @@ -# Copyright (c) 2009-2023 - Simon Conseil +# Copyright (c) 2009-2026 - Simon Conseil # Copyright (c) 2013 - Christophe-Marie Duquesne # Copyright (c) 2014 - Jonas Kaufmann # Copyright (c) 2015 - François D. diff --git a/src/sigal/image.py b/src/sigal/image.py index f21fbd1..3009fc0 100644 --- a/src/sigal/image.py +++ b/src/sigal/image.py @@ -1,4 +1,4 @@ -# Copyright (c) 2009-2023 - Simon Conseil +# Copyright (c) 2009-2026 - Simon Conseil # Copyright (c) 2015 - François D. # Copyright (c) 2018 - Edwin Steele diff --git a/src/sigal/log.py b/src/sigal/log.py index f55cb2d..7b1cf70 100644 --- a/src/sigal/log.py +++ b/src/sigal/log.py @@ -1,4 +1,4 @@ -# Copyright (c) 2013-2023 - Simon Conseil +# Copyright (c) 2013-2026 - Simon Conseil # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to diff --git a/src/sigal/plugins/media_page.py b/src/sigal/plugins/media_page.py index 5234bd3..fd96ccf 100644 --- a/src/sigal/plugins/media_page.py +++ b/src/sigal/plugins/media_page.py @@ -1,4 +1,4 @@ -# Copyright (c) 2009-2023 - Simon Conseil +# Copyright (c) 2009-2026 - Simon Conseil # Copyright (c) 2014 - Jamie Starke # Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/src/sigal/settings.py b/src/sigal/settings.py index 0026d2a..00a7a1b 100644 --- a/src/sigal/settings.py +++ b/src/sigal/settings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2009-2023 - Simon Conseil +# Copyright (c) 2009-2026 - Simon Conseil # Copyright (c) 2013 - Christophe-Marie Duquesne # Copyright (c) 2017 - Mate Lakat # Copyright (c) 2021 - Keith Feldman diff --git a/src/sigal/utils.py b/src/sigal/utils.py index 57da452..4879e75 100644 --- a/src/sigal/utils.py +++ b/src/sigal/utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2011-2023 - Simon Conseil +# Copyright (c) 2011-2026 - Simon Conseil # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to diff --git a/src/sigal/video.py b/src/sigal/video.py index d7e0eef..0b0395c 100644 --- a/src/sigal/video.py +++ b/src/sigal/video.py @@ -1,5 +1,5 @@ # Copyright (c) 2013 - Christophe-Marie Duquesne -# Copyright (c) 2013-2023 - Simon Conseil +# Copyright (c) 2013-2026 - Simon Conseil # Copyright (c) 2021 - Keith Feldman # Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/src/sigal/writer.py b/src/sigal/writer.py index cbb361f..c0b65f2 100644 --- a/src/sigal/writer.py +++ b/src/sigal/writer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2009-2023 - Simon Conseil +# Copyright (c) 2009-2026 - Simon Conseil # Copyright (c) 2013 - Christophe-Marie Duquesne # Copyright (c) 2018 - Edwin Steele