From 68854831de859086adc5b88d9499df48bd2816cd Mon Sep 17 00:00:00 2001 From: acidvegas Date: Tue, 27 May 2025 12:11:35 -0400 Subject: [PATCH] Updated --- apv/__init__.py | 6 +++++- setup.py | 2 +- unit_test.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/apv/__init__.py b/apv/__init__.py index 628377d..4f914be 100644 --- a/apv/__init__.py +++ b/apv/__init__.py @@ -1,3 +1,7 @@ #!/usr/bin/env python3 # Advanced Python Logging - Developed by acidvegas in Python (https://git.acid.vegas/apv) -# apv/__init__.py \ No newline at end of file +# apv/__init__.py + +from apv.apv import setup_logging + +__all__ = ['setup_logging'] \ No newline at end of file diff --git a/setup.py b/setup.py index d95fc48..e209d95 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ with open('README.md', 'r', encoding='utf-8') as fh: setup( name='apv', - version='4.0.0', + version='4.0.1', description='Advanced Python Logging', author='acidvegas', author_email='acid.vegas@acid.vegas', diff --git a/unit_test.py b/unit_test.py index c0b3312..7fb57cf 100644 --- a/unit_test.py +++ b/unit_test.py @@ -10,7 +10,7 @@ import time sys.dont_write_bytecode = True # FUCKOFF __pycache__ -import apv.apv as apv +import apv def test_console_logging():