mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-02 10:47:14 +00:00
6 lines
183 B
Python
6 lines
183 B
Python
from __future__ import (absolute_import, print_function, division)
|
|
|
|
IVERSION = (0, 18)
|
|
VERSION = ".".join(str(i) for i in IVERSION)
|
|
NAME = "netlib"
|
|
NAMEVERSION = NAME + " " + VERSION
|