From 7bebba0c7643b85ea2ab2f089c79bfe90ed2880d Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 31 Dec 2016 22:28:09 +0200 Subject: Add more automated checking, to setup.py --- pgpwordlist/__init__.py | 2 +- pgpwordlist/version.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 pgpwordlist/version.py (limited to 'pgpwordlist') diff --git a/pgpwordlist/__init__.py b/pgpwordlist/__init__.py index ceb321c..495f736 100644 --- a/pgpwordlist/__init__.py +++ b/pgpwordlist/__init__.py @@ -16,6 +16,6 @@ # =*= License: GPL-3+ =*= +from .version import __version__, __version_info__ from .wordlist import pgp_word_list from .funcs import get_word, get_hex, hex_to_words, words_to_hex - diff --git a/pgpwordlist/version.py b/pgpwordlist/version.py new file mode 100644 index 0000000..9e74f14 --- /dev/null +++ b/pgpwordlist/version.py @@ -0,0 +1,2 @@ +__version__ = '0.0' +__version_info__ = (0, 0) -- cgit v1.2.1