wasp-os/wasp/boards/pinetime/manifest.py
Daniel Thompson a4c62bb818 wasp: apps: Remove __init__.py
wasp-os contains circular import dependancies (wasp includes apps which
include wasp) but this is normally harmless.

However using __init__.py exagerated to the problem and since the benefit
of the __init__ file is pretty anyway the let's just remove it.
2020-05-10 09:33:26 +01:00

41 lines
897 B
Python

# SPDX-License-Identifier: LGPL-3.0-or-later
# Copyright (C) 2020 Daniel Thompson
freeze('.', 'watch.py', opt=3)
freeze('../..',
(
'apps/clock.py',
'apps/flashlight.py',
'apps/launcher.py',
'apps/pager.py',
'apps/settings.py',
'apps/stopwatch.py',
'apps/testapp.py',
'boot.py',
'demo.py',
'draw565.py',
'drivers/battery.py',
'drivers/cst816s.py',
'drivers/nrf_rtc.py',
'drivers/signal.py',
'drivers/st7789.py',
'drivers/vibrator.py',
'fonts/__init__.py',
'fonts/clock.py',
'fonts/sans24.py',
'fonts/sans36.py',
'icons.py',
'logo.py',
'shell.py',
'wasp.py',
'widgets.py',
),
opt=3
)
freeze('../../drivers/flash',
(
'bdevice.py',
'flash/flash_spi.py'
), opt=3
)