Skip to content

Commit

Permalink
Change ownership
Browse files Browse the repository at this point in the history
  • Loading branch information
Setsugennoao committed Oct 29, 2023
1 parent ea2ea93 commit f7b86e5
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 22 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
# vs-scale

### VapourSynth (de)scale functions

<br>

Wrappers for scaling and descaling functions.

You can find support in the [IEW Discord server](https://discord.gg/qxTxVJGtst).
<br><br>
For support you can find me in my [Discord server](https://discord.gg/setsugen), @setsugen_no_ao. <br><br>

## 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
```
6 changes: 3 additions & 3 deletions docs/changelogs/changelogs.rst
Original file line number Diff line number Diff line change
@@ -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 <https://github.com/Irrational-Encoding-Wizardry/vs-scale/releases>`_
Check the `Github releases page <https://github.com/Setsugennoao/vs-scale/releases>`_
for a full changelog.
4 changes: 2 additions & 2 deletions docs/getting_started/community.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://discord.gg/qxTxVJGtst>`_
* Check out my `Discord server <https://discord.gg/setsugen>`_

.. warning::

Expand All @@ -19,7 +19,7 @@ Contributing

.. _contribute:

The easiest way to contribute is to simply send in a `pull request <https://github.com/Irrational-Encoding-Wizardry/vs-scale/pulls>`_!
The easiest way to contribute is to simply send in a `pull request <https://github.com/Setsugennoao/vs-scale/pulls>`_!
Please keep your changes to a minimum. The following contributions will be automatically rejected:

PRs that
Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
10 changes: 5 additions & 5 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -66,6 +66,6 @@ Check out the `how to contribute <contribute>` section!
Special Credits
---------------
| A special thanks to every contributor who has contributed to vsscale.
| `A comprehensive list of contributors can be found here. <https://github.com/Irrational-Encoding-Wizardry/vs-scale/graphs/contributors>`_
| `A comprehensive list of contributors can be found here. <https://github.com/Setsugennoao/vs-scale/graphs/contributors>`_

5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
8 changes: 4 additions & 4 deletions vsscale/_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

__version__ = '1.9.1'

__author__ = 'Setsugen no ao <setsugen@setsugen.dev>'
__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__)

0 comments on commit f7b86e5

Please sign in to comment.