File: __init__.py

package info (click to toggle)
freedom-maker 0.35
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 408 kB
  • sloc: python: 2,200; xml: 357; makefile: 10
file content (18 lines) | stat: -rwxr-xr-x 268 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/python3
# SPDX-License-Identifier: GPL-3.0-or-later
"""
Tool to build FreedomBox images for various targets.
"""

from .application import Application

__version__ = '0.34'

__all__ = [
    'Application',
    'main',
]


def main():
    Application().run()