Skip to content

Commit

Permalink
Test release
Browse files Browse the repository at this point in the history
  • Loading branch information
rostislav-matveev committed Feb 10, 2022
1 parent 22c15cf commit 4f8319d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
**/*tmp*
**/*~
**/#*#
examples/
examples/*
FvwmTest.py
.pypirc
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions fvwmpy/fvwmpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[metadata]
description-file = README.md
description-file = README.md
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 4f8319d

Please sign in to comment.