2019-12-23 01:12:07 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vim:fenc=utf-8
|
|
|
|
#
|
|
|
|
# Copyright © 2019 Maxime “pep” Buquet <pep@bouah.net>
|
|
|
|
#
|
|
|
|
# Distributed under terms of the GPLv3+ license.
|
|
|
|
|
|
|
|
"""
|
|
|
|
Slixmpp OMEMO plugin
|
|
|
|
Copyright © 2019 Maxime “pep” Buquet <pep@bouah.net>
|
|
|
|
This file is part of poezio-omemo.
|
|
|
|
|
|
|
|
See the file LICENSE for copying permission.
|
|
|
|
"""
|
|
|
|
|
2020-02-19 23:23:59 +00:00
|
|
|
__version__ = "0.3.0"
|
|
|
|
__version_info__ = (0, 3, 0)
|