diff options
author | jaseg <git@jaseg.de> | 2023-03-30 13:57:01 +0200 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2023-03-30 13:57:01 +0200 |
commit | 5a1a2734f2238cd201b4c94d878eb9daf31c3b63 (patch) | |
tree | eb0bbad10f2b6b53c01b94fe03ace37eaad5c6f8 /mpv.py | |
parent | 80f5ea64a1313698ba1b1e555d63f30f17ce935c (diff) | |
download | python-mpv-5a1a2734f2238cd201b4c94d878eb9daf31c3b63.tar.gz python-mpv-5a1a2734f2238cd201b4c94d878eb9daf31c3b63.tar.bz2 python-mpv-5a1a2734f2238cd201b4c94d878eb9daf31c3b63.zip |
Add __version__ field to module
Closes #248.
Diffstat (limited to 'mpv.py')
-rw-r--r-- | mpv.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -17,6 +17,8 @@ # # You can find copies of the GPLv2 and LGPLv2.1 licenses in the project repository's LICENSE.GPL and LICENSE.LGPL files. +__version__ = '1.0.3' + from ctypes import * import ctypes.util import threading |