mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
7 lines
183 B
Python
7 lines
183 B
Python
from __future__ import (absolute_import, print_function, division)
|
|
|
|
IVERSION = (0, 17)
|
|
VERSION = ".".join(str(i) for i in IVERSION)
|
|
NAME = "netlib"
|
|
NAMEVERSION = NAME + " " + VERSION
|