Skip to content

Commit 03f689e

Browse files
committed
Merge remote-tracking branch 'origin/main'
# Conflicts: # .github/workflows/linting.yml # .github/workflows/pypi-publish.yml # pyproject.toml
2 parents 0fb6a53 + 073f9f3 commit 03f689e

3 files changed

Lines changed: 31 additions & 0 deletions

File tree

lgg/_logger.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class MyHandler(StreamHandler):
2727

2828
def __init__(self, ):
2929
super().__init__()
30+
self.stream = sys.stdout
3031

3132

3233
def get_logger(name=DEFAULT_NAME):

lgg/version.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = '0.2.2'

setup.cfg

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
[metadata]
2+
name = lgg
3+
version = attr: lgg.version.__version__
4+
author = Ayoub Assis
5+
author_email = assis.ayoub@gmail.com
6+
url = https://github.com/the-beee/python-logger
7+
description = A simple yet fancy logger for Python scripts
8+
long_description = file: README.md
9+
long_description_content_type = text/markdown
10+
keywords = Python, Logger, Fancy Logger
11+
license = MIT License
12+
classifiers =
13+
License :: OSI Approved :: BSD License
14+
Programming Language :: Python :: 3
15+
16+
[options]
17+
packages = find:
18+
zip_safe = True
19+
include_package_data = True
20+
21+
[options.extras_require]
22+
dev =
23+
flake8==4.0.1
24+
pytest==7.1.2
25+
flake9==3.8.3
26+
pylint==2.13.9
27+
28+
[options.package_data]
29+
* = README.md

0 commit comments

Comments
 (0)