From 197dfb98ff2fc63d7e5f9071e3f62f2b654ca25d Mon Sep 17 00:00:00 2001 From: Setsugennoao <41454651+Setsugennoao@users.noreply.github.com> Date: Mon, 30 Oct 2023 15:57:45 +0100 Subject: [PATCH] Change org ownership --- LICENSE | 2 +- setup.py | 5 ++--- vsexprtools/_metadata.py | 8 ++++---- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/LICENSE b/LICENSE index ec4dab6..fafc675 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 Irrational Encoding Wizardry +Copyright (c) 2023 Jaded Encoding Thaumaturgy Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/setup.py b/setup.py index b98f8d3..3f9ca6d 100644 --- a/setup.py +++ b/setup.py @@ -22,9 +22,8 @@ long_description=readme, long_description_content_type='text/markdown', project_urls={ - 'Source Code': 'https://github.com/Irrational-Encoding-Wizardry/vs-exprtools', - 'Documentation': 'https://vsexprtools.encode.moe/en/latest/', - 'Contact': 'https://discord.gg/qxTxVJGtst', + 'Source Code': 'https://github.com/Jaded-Encoding-Thaumaturgy/vs-exprtools', + 'Contact': 'https://discord.gg/XTpc6Fa9eB', }, install_requires=requirements, python_requires='>=3.11', diff --git a/vsexprtools/_metadata.py b/vsexprtools/_metadata.py index 40ccb09..28ea5ec 100644 --- a/vsexprtools/_metadata.py +++ b/vsexprtools/_metadata.py @@ -2,11 +2,11 @@ __version__ = '1.4.6' -__author__ = 'Setsugen no ao ' -__maintainer__ = __author__ +__author_name__, __author_email__ = 'Setsugen no ao', 'setsugen@setsugen.dev' +__maintainer_name__, __maintainer_email__ = __author_name__, __author_email__ -__author_name__, __author_email__ = [x[:-1] for x in __author__.split('<')] -__maintainer_name__, __maintainer_email__ = [x[:-1] for x in __maintainer__.split('<')] +__author__ = f'{__author_name__} <{__author_email__}>' +__maintainer__ = __author__ if __name__ == '__github__': print(__version__)