Skip to content

Commit 8a07d53

Browse files
committed
Update copyright years
Signed-off-by: Kevin Locke <kevin@kevinlocke.name>
1 parent b5bb7b4 commit 8a07d53

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2019-2022 Kevin Locke <kevin@kevinlocke.name>. All rights reserved.
1+
Copyright 2019-2026 Kevin Locke <kevin@kevinlocke.name>. All rights reserved.
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ license_files = LICENSE.txt
1616
author = Kevin Locke
1717
author_email = kevin@kevinlocke.name
1818
# Copyright statement for sphinx and other non-setup uses
19-
copyright = Copyright 2019-2022 Kevin Locke <kevin@kevinlocke.name>
19+
copyright = Copyright 2019-2026 Kevin Locke <kevin@kevinlocke.name>
2020
url = https://github.com/kevinoid/python-project-template
2121
# Project URLs for specific purposes
2222
# https://packaging.python.org/guides/distributing-packages-using-setuptools/?highlight=keywords#project-urls

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22
# This file is part of packagename <https://github.com/kevinoid/packagename>
33
# Made available under the terms of the MIT License, see LICENSE.txt
4-
# Copyright 2019-2022 Kevin Locke <kevin@kevinlocke.name>
4+
# Copyright 2019-2026 Kevin Locke <kevin@kevinlocke.name>
55
"""
66
Distutils/Setuptools Setup Script.
77

src/packagename/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is part of python-project-template
22
# Made available under the terms of the MIT License, see LICENSE.txt
3-
# Copyright 2019-2022 Kevin Locke <kevin@kevinlocke.name>
3+
# Copyright 2019-2026 Kevin Locke <kevin@kevinlocke.name>
44
"""packagename module."""
55

66
# Note: Must comply with https://peps.python.org/pep-0440/

src/packagename/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22
# This file is part of python-project-template
33
# Made available under the terms of the MIT License, see LICENSE.txt
4-
# Copyright 2019-2022 Kevin Locke <kevin@kevinlocke.name>
4+
# Copyright 2019-2026 Kevin Locke <kevin@kevinlocke.name>
55
"""Entry point for running packagename as a command-line tool."""
66

77
import sys

src/packagename/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# PYTHON_ARGCOMPLETE_OK
22
# This file is part of python-project-template
33
# Made available under the terms of the MIT License, see LICENSE.txt
4-
# Copyright 2019-2022 Kevin Locke <kevin@kevinlocke.name>
4+
# Copyright 2019-2026 Kevin Locke <kevin@kevinlocke.name>
55
"""Command-line interface for packagename."""
66

77
import argparse
@@ -32,7 +32,7 @@
3232
+ __version__
3333
+ '''
3434
35-
Copyright 2019-2022 Kevin Locke <kevin@kevinlocke.name>
35+
Copyright 2019-2026 Kevin Locke <kevin@kevinlocke.name>
3636
3737
%(prog)s is free software; you can redistribute it and/or modify
3838
it under the terms of the MIT License.

0 commit comments

Comments
 (0)