From: Bob Halley Date: Tue, 2 Apr 2019 18:43:11 +0000 (-0700) Subject: Define __version__ in the __init__ module. X-Git-Tag: v2.0.0rc1~368 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c7dd6d82e851214d2698af81529045278f07e037;p=thirdparty%2Fdnspython.git Define __version__ in the __init__ module. [Issue #361] --- diff --git a/dns/__init__.py b/dns/__init__.py index 510b45e4..de7689a9 100644 --- a/dns/__init__.py +++ b/dns/__init__.py @@ -53,3 +53,5 @@ __all__ = [ 'wiredata', 'zone', ] + +from dns.version import version as __version__