blob: f68ef3b99e96fc39b82aa53ffafd8be441cf64a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# -*- coding: utf-8 -*-
"""
# Simple password manager
# Copyright (c) 2011-2019 Michael Buesch <m@bues.ch>
# Licensed under the GNU/GPL version 2 or later.
"""
__all__ = [
"VERSION_MAJOR",
"VERSION_MINOR",
"VERSION_EXTRA",
"VERSION_STRING",
]
VERSION_MAJOR = 2
VERSION_MINOR = 0
VERSION_EXTRA = ""
VERSION_STRING = "%d.%d%s" % (VERSION_MAJOR, VERSION_MINOR, VERSION_EXTRA)
|