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 4f6e083 commit 422b438
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
# vs-deinterlace

### VapourSynth deinterlacing and interlaced/telecined content helper functions

<br>

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 `vsdeinterlace` with the following command:

```sh
$ pip install vsdeinterlace
pip install vsdeinterlace
```

Or if you want the latest git version, install it with this command:

```sh
$ pip install git+https://github.com/Irrational-Encoding-Wizardry/vs-deinterlace.git
pip install git+https://github.com/Setsugennoao/vs-deinterlace.git
```
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-deinterlace',
'Documentation': 'https://vsdeinterlace.encode.moe/en/latest/',
'Contact': 'https://discord.gg/qxTxVJGtst',
'Source Code': 'https://github.com/Setsugennoao/vs-deinterlace',
'Contact': 'https://discord.gg/setsugen',
},
install_requires=requirements,
python_requires='>=3.11',
Expand Down
8 changes: 4 additions & 4 deletions vsdeinterlace/_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

__version__ = '0.5.1'

__author__ = 'Setsugen no ao <[email protected]>'
__maintainer__ = __author__
__author_name__, __author_email__ = 'Setsugen no ao', '[email protected]'
__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 422b438

Please sign in to comment.