From 97a046cbaed00511ba192243b8fb2922d91e17aa Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 16 Aug 2025 15:04:13 +0300 Subject: [PATCH] Add package metadata to __init__.py Created src/__init__.py with project docstring, version, and author information for YTSage, a PySide6-based YouTube video downloader. --- src/__init__.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/__init__.py diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..969fd74 --- /dev/null +++ b/src/__init__.py @@ -0,0 +1,8 @@ +""" +YTSage - YouTube Video Downloader + +A modern, user-friendly YouTube video downloader built with PySide6. +""" + +__version__ = "4.7.0" +__author__ = "oop7"