mirror of
https://github.com/zhigang1992/mitmproxy.git
synced 2026-04-24 04:14:57 +08:00
6 lines
175 B
Python
6 lines
175 B
Python
IVERSION = (0, 10, 1)
|
|
VERSION = ".".join(str(i) for i in IVERSION)
|
|
MINORVERSION = ".".join(str(i) for i in IVERSION[:1])
|
|
NAME = "mitmproxy"
|
|
NAMEVERSION = NAME + " " + VERSION
|