diff --git a/.gitignore b/.gitignore index e08d8f4..df0f0ec 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,6 @@ **/*tmp* **/*~ **/#*# -examples/ +examples/* FvwmTest.py .pypirc \ No newline at end of file diff --git a/README.md b/README.md index 5dcce1b..707de21 100644 --- a/README.md +++ b/README.md @@ -10,11 +10,11 @@ This module is released under GPLv3 license. I love FVWM ## Features -- Simple interface for communicating with the window manager. +- Simple interface for communication with the window manager. - Possibility of maintaining dynamically updated list of windows and their properties. - Possibility to iterate over windows satisfying given conditions. -- Possibility of dynamically change configuration +- Possibility of dynamically changing configuration - Simple interface for accessing FVWM's variables and infostore database. - Compatible with tkinter @@ -23,7 +23,8 @@ I love FVWM later. - Support for the concept of module aliases -A typical example of a module using fvwmpy may look along the following lines +A typical example of a module using fvwmpy may be written along the +following lines ``` #!/usr/bin/python3 import fvwmpy diff --git a/fvwmpy/fvwmpy.py b/fvwmpy/fvwmpy.py index 3dc236a..32869bf 100644 --- a/fvwmpy/fvwmpy.py +++ b/fvwmpy/fvwmpy.py @@ -36,6 +36,7 @@ def process(self, msg, kwargs): _logging.basicConfig(stream=_sys.stderr) DEBUGLEVEL = _logging.DEBUG + _l = _StyleAdapter(_logging.getLogger("fvwmpy")) _l.setLevel(LOGGINGLEVEL) dbg = _l.debug diff --git a/setup.cfg b/setup.cfg index 224a779..9477fb4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,2 @@ [metadata] -description-file = README.md \ No newline at end of file +description-file = README.md \ No newline at end of file diff --git a/setup.py b/setup.py index bb1d5d8..eb373ff 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name = 'fvwmpy', packages = ['fvwmpy'], - version = '1.0.0', + version = '1.0.1', description = 'Framework for developing FVWM modules in python', author = 'Rostislav Matveev', author_email = 'rostislav.matveev',