video2x/video2x/__init__.py

33 lines
1.1 KiB
Python
Raw Normal View History

2021-07-06 00:56:56 +00:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Copyright (C) 2018-2023 K4YT3X and contributors.
2022-02-11 06:55:07 +00:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Name: Package Init
Author: K4YT3X <i@k4yt3x.com>
2021-07-06 00:56:56 +00:00
"""
2022-02-11 06:55:07 +00:00
2022-02-12 06:45:59 +00:00
# version assignment has to precede imports to
# prevent setup.cfg from producing import errors
__version__ = "5.0.0-beta7"
2022-02-12 06:45:59 +00:00
2022-04-09 18:43:36 +00:00
# flake8: noqa
# let flake8 ignore this file to avoid F401 warnings
# generated by the following lines
2021-07-06 00:56:56 +00:00
from .interpolator import Interpolator
2022-03-01 21:11:50 +00:00
from .upscaler import Upscaler
2022-05-01 08:34:00 +00:00
from .video2x import Video2X