]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
Define __version__ in the __init__ module.
authorBob Halley <halley@dnspython.org>
Tue, 2 Apr 2019 18:43:11 +0000 (11:43 -0700)
committerBob Halley <halley@dnspython.org>
Tue, 2 Apr 2019 18:43:11 +0000 (11:43 -0700)
[Issue #361]

dns/__init__.py

index 510b45e4720581547acf85b2b2a7b322cade6b8e..de7689a9cea0d3a40643eb0d50247db2c0ffcdc2 100644 (file)
@@ -53,3 +53,5 @@ __all__ = [
     'wiredata',
     'zone',
 ]
+
+from dns.version import version as __version__