From 51bc9e5131d2f75aad53021b7341294587f82ffe Mon Sep 17 00:00:00 2001
From: Setsugennoao <41454651+Setsugennoao@users.noreply.github.com>
Date: Mon, 30 Oct 2023 15:56:39 +0100
Subject: [PATCH] Change org ownership
---
LICENSE | 2 +-
README.md | 9 +++++----
setup.py | 5 ++---
vsdeinterlace/_metadata.py | 8 ++++----
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/LICENSE b/LICENSE
index b662cef..7bc0aa2 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2022 Setsugennoao
+Copyright (c) 2023 Jaded-Encoding-Thaumaturgy
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 8f0bdee..ebd9cd6 100644
--- a/README.md
+++ b/README.md
@@ -1,20 +1,21 @@
# vs-deinterlace
### VapourSynth deinterlacing and interlaced/telecined content helper functions
+
-You can find support in the [IEW Discord server](https://discord.gg/qxTxVJGtst).
-
+For support you can check out the [JET Discord server](https://discord.gg/XTpc6Fa9eB).
+
## 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/Jaded-Encoding-Thaumaturgy/vs-deinterlace.git
```
diff --git a/setup.py b/setup.py
index 46b17ae..6c3dee3 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-deinterlace',
- 'Documentation': 'https://vsdeinterlace.encode.moe/en/latest/',
- 'Contact': 'https://discord.gg/qxTxVJGtst',
+ 'Source Code': 'https://github.com/Jaded-Encoding-Thaumaturgy/vs-deinterlace',
+ 'Contact': 'https://discord.gg/XTpc6Fa9eB',
},
install_requires=requirements,
python_requires='>=3.11',
diff --git a/vsdeinterlace/_metadata.py b/vsdeinterlace/_metadata.py
index baf082f..23e39ec 100644
--- a/vsdeinterlace/_metadata.py
+++ b/vsdeinterlace/_metadata.py
@@ -2,11 +2,11 @@
__version__ = '0.5.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__)