File: __init__.py

package info (click to toggle)
python-tx-xmpp 0.10.1.post1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,468 kB
  • sloc: python: 12,915; makefile: 3
file content (17 lines) | stat: -rw-r--r-- 324 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright (c) Ralph Meijer.
# See LICENSE for details

"""
Wokkel.

Support library for Twisted applications using XMPP protocols.
"""

from importlib.metadata import PackageNotFoundError, version

try:
    __version__ = version("tx-xmpp")
except PackageNotFoundError:
    __version__ = "0.0.0"

__all__ = ["__version__"]