This repository has been archived on 2024-07-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2020-03-01 01:49:43 +00:00

15 lines
302 B
Python

"""flask-calibrestekje module."""
from flask_calibrestekje.flask_calibrestekje import CalibreStekje # noqa
try:
import pkg_resources
except ImportError:
pass
try:
__version__ = pkg_resources.get_distribution("flask-calibrestekje").version
except Exception:
__version__ = "unknown"