Skip to content
Snippets Groups Projects
Commit 9b49096a authored by Martin Mareš's avatar Martin Mareš Committed by Jiří Kalvoda
Browse files

Python: Cleaned up the Python library

- both the library module and its packaging live in python-osd/
- fixed a typo
- added "import osd" to example usage
- added dependency on python-xlib
parent f4e23f75
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
Basic usage: Basic usage:
============ ============
import osd
osd.notify("first line", "second line") osd.notify("first line", "second line")
Each argument is either a single string (a notification line) Each argument is either a single string (a notification line)
......
...@@ -3,7 +3,7 @@ name = osd ...@@ -3,7 +3,7 @@ name = osd
version = 0.0.1 version = 0.0.1
author = Jiri Kalvoda author = Jiri Kalvoda
author_email = jirikalvoda@kam.mff.cuni.cz author_email = jirikalvoda@kam.mff.cuni.cz
description = On-Screen Disply Client description = On-Screen Display Client
long_description_content_type = text/plain long_description_content_type = text/plain
classifiers = classifiers =
Operating System :: OS Independent Operating System :: OS Independent
...@@ -14,18 +14,13 @@ classifiers = ...@@ -14,18 +14,13 @@ classifiers =
Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.10
[options] [options]
package_dir =
= src
packages = osd packages = osd
python_requires = >=3.7 python_requires = >=3.7
zip_safe = False zip_safe = False
install_requires = install_requires =
argparse >= 0.21 argparse >= 0.21
typing >= 3.0 typing >= 3.0
python-xlib
[options.packages.find]
where = src
[bdist_wheel] [bdist_wheel]
universal = 1 universal = 1
../../../python_client_lib.py
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment