diff --git a/LICENSE b/LICENSE index ec4dab6..4860444 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 Irrational Encoding Wizardry +Copyright (c) 2023 Setsugennoao 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/README.md b/README.md index d2dcf18..27af15b 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Wrapper for RGVS, RGSF, and various other functions #### Dependencies -- [vstools](https://github.com/Irrational-Encoding-Wizardry/vstools/) +- [vstools](https://github.com/Setsugennoao/vstools/) - [RGVS](https://github.com/vapoursynth/vs-removegrain) - [RGSF](https://github.com/IFeelBloated/RGSF) -- [Akarin Expr](https://github.com/AkarinVS/vapoursynth-plugin) \ No newline at end of file +- [Akarin Expr](https://github.com/AkarinVS/vapoursynth-plugin) diff --git a/setup.py b/setup.py index 3484e3a..60b995f 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-rgtools', - 'Documentation': 'https://vsrgtools.encode.moe/en/latest/', - 'Contact': 'https://discord.gg/qxTxVJGtst', + 'Source Code': 'https://github.com/Setsugennoao/vs-rgtools', + 'Contact': 'https://discord.gg/setsugen', }, install_requires=requirements, python_requires='>=3.11', diff --git a/vsrgtools/_metadata.py b/vsrgtools/_metadata.py index 75fafec..4bd6837 100644 --- a/vsrgtools/_metadata.py +++ b/vsrgtools/_metadata.py @@ -2,11 +2,11 @@ __version__ = '1.5.1' -__author__ = 'Irrational Encoding Wizardry ' -__maintainer__ = 'Setsugen no ao ' +__author_name__, __author_email__ = 'Irrational Encoding Wizardry', 'wizards@encode.moe>' +__maintainer_name__, __maintainer_email__ = 'Setsugen no ao', 'setsugen@setsugen.dev' -__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__)