From d9301cdd848690e058c1ab370dcab4891a8dfb2f Mon Sep 17 00:00:00 2001 From: Setsugennoao <41454651+Setsugennoao@users.noreply.github.com> Date: Sun, 29 Oct 2023 18:29:12 +0100 Subject: [PATCH] Change ownership --- README.md | 9 +++++---- setup.py | 5 ++--- vsaa/_metadata.py | 8 ++++---- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 72892bb..e5a6706 100644 --- a/README.md +++ b/README.md @@ -1,22 +1,23 @@ # vs-aa ### VapourSynth anti aliasing and scaling functions +
Wrappers for aa/scaling plugins and functions, aimed to have compatibility with vs-kernels scalers. -You can find support in the [IEW Discord server](https://discord.gg/qxTxVJGtst). -

+For support you can find me in my [Discord server](https://discord.gg/setsugen), @setsugen_no_ao.

+ ## How to install Install `vsaa` with the following command: ```sh -$ pip install vsaa +pip install vsaa ``` Or if you want the latest git version, install it with this command: ```sh -$ pip install git+https://github.com/Irrational-Encoding-Wizardry/vs-aa.git +pip install git+https://github.com/Setsugennoao/vs-aa.git ``` diff --git a/setup.py b/setup.py index 2c81429..9dafa98 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-aa', - 'Documentation': 'https://vsaa.encode.moe/en/latest/', - 'Contact': 'https://discord.gg/qxTxVJGtst', + 'Source Code': 'https://github.com/Setsugennoao/vs-aa', + 'Contact': 'https://discord.gg/setsugen', }, install_requires=requirements, python_requires='>=3.11', diff --git a/vsaa/_metadata.py b/vsaa/_metadata.py index 48a3a4e..bcc461b 100644 --- a/vsaa/_metadata.py +++ b/vsaa/_metadata.py @@ -2,11 +2,11 @@ __version__ = '1.8.2' -__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__)