mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
12 lines
373 B
Python
12 lines
373 B
Python
from __future__ import (absolute_import, print_function, division)
|
|
|
|
IVERSION = (0, 13, 1)
|
|
VERSION = ".".join(str(i) for i in IVERSION)
|
|
MINORVERSION = ".".join(str(i) for i in IVERSION[:2])
|
|
NAME = "mitmproxy"
|
|
NAMEVERSION = NAME + " " + VERSION
|
|
|
|
NEXT_MINORVERSION = list(IVERSION)
|
|
NEXT_MINORVERSION[1] += 1
|
|
NEXT_MINORVERSION = ".".join(str(i) for i in NEXT_MINORVERSION[:2])
|