summaryrefslogtreecommitdiffhomepage
path: root/custom_libs/flask_compress/__init__.py
blob: 0a643ec4ed23b2853f17f08eb857306f7260ddf5 (plain)
1
2
3
4
5
6
7
8
9
from .flask_compress import Compress

# _version.py is generated by setuptools_scm when building the package, it is not versioned.
# If missing, this means that the imported code was most likely the git repository, that was
# installed without the "editable" mode.
try:
    from ._version import __version__
except ImportError:
    __version__ = "0"