Update the package information and imports.

This commit is contained in:
2023-07-16 14:30:29 +03:00
parent 27bae3e375
commit f5e9da7c83
3 changed files with 7 additions and 5 deletions
+2
View File
@@ -39,3 +39,5 @@
Add the requirements and .gitignore.
** 1.1.3 <2023-07-16>
Update the mail information.
** 1.1.4 <2023-07-16>
Update the package information and imports.
+1 -1
View File
@@ -11,7 +11,7 @@ authors = [
description = "Getting notification from anitube.in.ua."
readme = "README.rst"
license = { file="COPYING" }
requires-python = ">=3.7"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
+4 -4
View File
@@ -17,10 +17,10 @@
# along with Anitube Simple Notification. If not, see #
# <https://www.gnu.org/licenses/>. #
##########################################################################
from db import DataBase
from scraper import Scraper
from notify import Notification
from config import Config
from .db import DataBase
from .scraper import Scraper
from .notify import Notification
from .config import Config
from rich.console import Console
from rich.progress import track
import time