diff options
Diffstat (limited to 'ioctl')
-rw-r--r-- | ioctl/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ioctl/__init__.py b/ioctl/__init__.py index 2b38d6f..7084033 100644 --- a/ioctl/__init__.py +++ b/ioctl/__init__.py @@ -6,7 +6,8 @@ import fcntl from typing import Optional, Union -__all__ = ['IOCTL'] +__version__ = '0.2.1' +__all__ = ['__version__', 'IOCTL'] class IOCTL(object): |