12 lines
301 B
Python
12 lines
301 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
sphinxcontrib.websupport.version
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
:copyright: Copyright 2007-2018 by the Sphinx team, see README.
|
|
:license: BSD, see LICENSE for details.
|
|
"""
|
|
|
|
__version__ = '1.2.4'
|
|
__version_info__ = tuple(map(int, __version__.split('.')))
|