This commit is contained in:
Dionysus 2025-05-27 12:11:35 -04:00
parent 69efe86fb9
commit 68854831de
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
3 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
#!/usr/bin/env python3
# Advanced Python Logging - Developed by acidvegas in Python (https://git.acid.vegas/apv)
# apv/__init__.py
# apv/__init__.py
from apv.apv import setup_logging
__all__ = ['setup_logging']

View File

@ -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',

View File

@ -10,7 +10,7 @@ import time
sys.dont_write_bytecode = True # FUCKOFF __pycache__
import apv.apv as apv
import apv
def test_console_logging():