blob: 601c46ab525c0b3ebbd3e0205333aa437ba29734 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# SPDX-FileCopyrightText: Arch Linux contributors
# SPDX-License-Identifier: 0BSD
"""Allow cropgui to work without exposing its top-level module
names to the global module namespace."""
import python_qualify
python_qualify.enable_submodules(__name__)
__version__ = '{{ version }}'
|