From 13178aca4651f872e5135cbaf4671ab1ebac27f4 Mon Sep 17 00:00:00 2001 From: interlark Date: Sat, 11 Jun 2022 16:28:12 +0500 Subject: [PATCH] Add __init__.py --- __init__.py | 8 ++++++++ setup.cfg | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 __init__.py diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..dd2fc2c --- /dev/null +++ b/__init__.py @@ -0,0 +1,8 @@ +""" +USTVGO Free IPTV. +""" + +from .ustvgo_iptv import main, VERSION + +__version__ = VERSION +__all__ = ['main', '__version__'] diff --git a/setup.cfg b/setup.cfg index a0145bd..3791463 100644 --- a/setup.cfg +++ b/setup.cfg @@ -41,7 +41,7 @@ python_requires = >=3.7 ustvgo_iptv = channels.json [options.entry_points] -console_scripts = ustvgo-iptv = ustvgo_iptv.ustvgo_iptv:main +console_scripts = ustvgo-iptv = ustvgo_iptv:main [options.extras_require] dev =