-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v1.0.3 - Convert back to original colorspace after execution, more co…
…mments, pep8
- Loading branch information
1 parent
46998a2
commit 46779ae
Showing
2 changed files
with
71 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,23 +5,24 @@ | |
|
||
setup( | ||
name="vsgan", | ||
version="1.0.2", | ||
version="1.0.3", | ||
author="PRAGMA", | ||
author_email="[email protected]", | ||
description="VapourSynth GAN Implementation using RRDBNet, based on ESRGAN's implementation", | ||
license='MIT', | ||
license="MIT", | ||
long_description=readme, | ||
long_description_content_type="text/markdown", | ||
url="https://gitlab.com/imPRAGMA/VSGAN", | ||
packages=find_packages(), | ||
install_requires=[ | ||
'numpy', | ||
'torch' | ||
"numpy", | ||
"torch", | ||
"vapoursynth" | ||
], | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
python_requires='>=3.6', | ||
python_requires=">=3.6", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters