[briefcase.bootstraps]
Console = briefcase.bootstraps.console:ConsoleBootstrap
None = briefcase.bootstraps.empty:EmptyBootstrap
PySide6 = briefcase.bootstraps.pyside6:PySide6GuiBootstrap
Pygame = briefcase.bootstraps.pygame:PygameGuiBootstrap
Toga = briefcase.bootstraps.toga:TogaGuiBootstrap

[briefcase.channels.android.gradle]
playstore = briefcase.channels.playstore:PlayStorePublicationChannel

[briefcase.channels.iOS.Xcode]
appstore = briefcase.channels.appstore:AppStorePublicationChannel

[briefcase.debuggers]
debugpy = briefcase.debuggers.debugpy:DebugpyDebugger
pdb = briefcase.debuggers.pdb:PdbDebugger

[briefcase.formats.android]
gradle = briefcase.platforms.android.gradle

[briefcase.formats.iOS]
Xcode = briefcase.platforms.iOS.xcode

[briefcase.formats.linux]
appimage = briefcase.platforms.linux.appimage
flatpak = briefcase.platforms.linux.flatpak
system = briefcase.platforms.linux.system

[briefcase.formats.macOS]
Xcode = briefcase.platforms.macOS.xcode
app = briefcase.platforms.macOS.app

[briefcase.formats.web]
static = briefcase.platforms.web.static

[briefcase.formats.windows]
app = briefcase.platforms.windows.app
visualstudio = briefcase.platforms.windows.visualstudio

[briefcase.platforms]
android = briefcase.platforms.android
iOS = briefcase.platforms.iOS
linux = briefcase.platforms.linux
macOS = briefcase.platforms.macOS
web = briefcase.platforms.web
windows = briefcase.platforms.windows

[console_scripts]
briefcase = briefcase.__main__:main
