2021-11-14 05:13:20 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
proxy.py
|
|
|
|
~~~~~~~~
|
|
|
|
⚡⚡⚡ Fast, Lightweight, Pluggable, TLS interception capable proxy server focused on
|
|
|
|
Network monitoring, controls & Application development, testing, debugging.
|
2021-11-13 21:16:07 +00:00
|
|
|
|
2021-11-14 05:13:20 +00:00
|
|
|
:copyright: (c) 2013-present by Abhinav Singh and contributors.
|
|
|
|
:license: BSD, see LICENSE for more details.
|
|
|
|
|
|
|
|
Version definition.
|
|
|
|
"""
|
2021-11-13 21:16:07 +00:00
|
|
|
try:
|
|
|
|
# pylint: disable=unused-import
|
|
|
|
from ._scm_version import version as __version__ # noqa: WPS433, WPS436
|
|
|
|
except ImportError:
|
|
|
|
from pkg_resources import get_distribution as _get_dist # noqa: WPS433
|
|
|
|
__version__ = _get_dist('proxy.py').version # noqa: WPS440
|
|
|
|
|
|
|
|
|
|
|
|
__all__ = ('__version__',)
|