diff --git a/README.md b/README.md
index 6e43987..a8673eb 100644
--- a/README.md
+++ b/README.md
@@ -1,22 +1,23 @@
# vs-scale
### VapourSynth (de)scale functions
+
Wrappers for scaling and descaling functions.
-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 `vsscale` with the following command:
```sh
-$ pip install vsscale
+pip install vsscale
```
Or if you want the latest git version, install it with this command:
```sh
-$ pip install git+https://github.com/Irrational-Encoding-Wizardry/vs-scale.git
+pip install git+https://github.com/Setsugennoao/vs-scale.git
```
diff --git a/docs/changelogs/changelogs.rst b/docs/changelogs/changelogs.rst
index 75cf31c..f7ef6a5 100644
--- a/docs/changelogs/changelogs.rst
+++ b/docs/changelogs/changelogs.rst
@@ -1,8 +1,8 @@
Changelogs
==========
-.. image:: https://img.shields.io/github/commits-since/Irrational-Encoding-Wizardry/vs-scale/latest
- :target: https://github.com/Irrational-Encoding-Wizardry/vs-scale/commits/master
+.. image:: https://img.shields.io/github/commits-since/Setsugennoao/vs-scale/latest
+ :target: https://github.com/Setsugennoao/vs-scale/commits/master
-Check the `Github releases page `_
+Check the `Github releases page `_
for a full changelog.
diff --git a/docs/getting_started/community.rst b/docs/getting_started/community.rst
index 03f2d15..36ed5d1 100644
--- a/docs/getting_started/community.rst
+++ b/docs/getting_started/community.rst
@@ -8,7 +8,7 @@ Where to find support
If you're looking for vsscale support, there's a couple option:
* Read the official `documentation <_home>`
-* Check out the official Irrational Encoding Wizardry `Discord server `_
+* Check out my `Discord server `_
.. warning::
@@ -19,7 +19,7 @@ Contributing
.. _contribute:
-The easiest way to contribute is to simply send in a `pull request `_!
+The easiest way to contribute is to simply send in a `pull request `_!
Please keep your changes to a minimum. The following contributions will be automatically rejected:
PRs that
diff --git a/docs/getting_started/install.rst b/docs/getting_started/install.rst
index 90026bc..f711cd1 100644
--- a/docs/getting_started/install.rst
+++ b/docs/getting_started/install.rst
@@ -25,7 +25,7 @@ This will be less stable, but will feature the most up-to-date features, as well
.. code-block:: console
- pip install git+https://github.com/Irrational-Encoding-Wizardry/vs-scale.git -U
+ pip install git+https://github.com/Setsugennoao/vs-scale.git -U
It's recommended you use a release version over building from git
unless you require new functionality only available upstream.
diff --git a/docs/index.rst b/docs/index.rst
index 08362b1..09aa4cb 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -10,14 +10,14 @@ vsscale Documentation
.. image:: https://img.shields.io/pypi/v/vsscale
:target: https://pypi.org/project/vsscale/
-.. image:: https://img.shields.io/github/commits-since/Irrational-Encoding-Wizardry/vs-scale/latest
- :target: https://github.com/Irrational-Encoding-Wizardry/vs-scale/commits/master
+.. image:: https://img.shields.io/github/commits-since/Setsugennoao/vs-scale/latest
+ :target: https://github.com/Setsugennoao/vs-scale/commits/master
.. image:: https://img.shields.io/pypi/l/vsscale
- :target: https://github.com/Irrational-Encoding-Wizardry/vs-scale/blob/master/LICENSE
+ :target: https://github.com/Setsugennoao/vs-scale/blob/master/LICENSE
.. image:: https://img.shields.io/discord/856381934052704266?label=discord
- :target: https://discord.gg/qxTxVJGtst
+ :target: https://discord.gg/setsugen
.. image:: https://static.pepy.tech/personalized-badge/vsscale?period=total&units=international_system&left_color=grey&right_color=blue&left_text=downloads
:target: https://pepy.tech/project/vsscale
@@ -66,6 +66,6 @@ Check out the `how to contribute ` section!
Special Credits
---------------
| A special thanks to every contributor who has contributed to vsscale.
-| `A comprehensive list of contributors can be found here. `_
+| `A comprehensive list of contributors can be found here. `_
diff --git a/setup.py b/setup.py
index d600711..b39f8b3 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-scale',
- 'Documentation': 'https://vsscale.encode.moe/en/latest/',
- 'Contact': 'https://discord.gg/qxTxVJGtst',
+ 'Source Code': 'https://github.com/Setsugennoao/vs-scale',
+ 'Contact': 'https://discord.gg/setsugen',
},
install_requires=requirements,
python_requires='>=3.11',
diff --git a/vsscale/_metadata.py b/vsscale/_metadata.py
index 24d65ed..db9176c 100644
--- a/vsscale/_metadata.py
+++ b/vsscale/_metadata.py
@@ -2,11 +2,11 @@
__version__ = '1.9.1'
-__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__)