mitmproxy/libpathod/version.py
2015-11-06 13:51:40 +13:00

12 lines
367 B
Python

from __future__ import (absolute_import, print_function, division)
IVERSION = (0, 14)
VERSION = ".".join(str(i) for i in IVERSION)
MINORVERSION = ".".join(str(i) for i in IVERSION[:2])
NAME = "pathod"
NAMEVERSION = NAME + " " + VERSION
NEXT_MINORVERSION = list(IVERSION)
NEXT_MINORVERSION[1] += 1
NEXT_MINORVERSION = ".".join(str(i) for i in NEXT_MINORVERSION[:2])