apv

- 🐍 advanced python logging 📔
git clone git://git.acid.vegas/apv.git
Log | Files | Refs | Archive | README | LICENSE

commit 68854831de859086adc5b88d9499df48bd2816cd
parent 69efe86fb997769c55eaf1b2ca8e15f046b6b516
Author: acidvegas <acid.vegas@acid.vegas>
Date: Tue, 27 May 2025 12:11:35 -0400

Updated

Diffstat:
Mapv/__init__.py | 8++++++--
Msetup.py | 2+-
Munit_test.py | 2+-

3 files changed, 8 insertions(+), 4 deletions(-)

diff --git 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
@@ -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
@@ -10,7 +10,7 @@ import time
 
 sys.dont_write_bytecode = True # FUCKOFF __pycache__
 
-import apv.apv as apv
+import apv
 
 
 def test_console_logging():