Switch to GNU General Public License v3 (GPLv3)

This commit is contained in:
Dimitris Zlatanidis 2023-12-21 12:47:31 +02:00
parent 840dd92fca
commit 2e3cb28578
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ requires-python = ">=3.9"
keywords = ["slackware", "linux", "package", "manager", "tool"]
license = {text = "MIT License"}
classifiers = [
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",

View file

@ -7,7 +7,7 @@ class Version:
def __init__(self):
self.version_info: tuple = (4, 9, 6)
self.version: str = '{0}.{1}.{2}'.format(*self.version_info)
self.license: str = 'MIT License'
self.license: str = 'GNU General Public License v3 (GPLv3)'
self.author: str = 'Dimitris Zlatanidis (dslackw)'
self.homepage: str = 'https://dslackw.gitlab.io/slpkg'
self.email: str = 'dslackw@gmail.com'