mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-02 18:57:22 +00:00
5 lines
172 B
Python
5 lines
172 B
Python
IVERSION = (0, 11)
|
|
VERSION = ".".join(str(i) for i in IVERSION)
|
|
MINORVERSION = ".".join(str(i) for i in IVERSION[:2])
|
|
NAME = "mitmproxy"
|
|
NAMEVERSION = NAME + " " + VERSION
|