packaging external apps #2667
-
|
https://briefcase.beeware.org/en/stable/how-to/building/external-apps/ I'm trying to figure out how to package an that is compiled with pyinstaller, per the instructions in the link, it appears that I don't have to do any pre set up, such as Is there any walk through available somewhere for clarity? For this particular project, I don't want to use all the briefcase bells so I am hoping I can just use the packaging portion. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
There's no walk through beyond the documentation you've already linked. However there's not that much more to say, either. You need a pyproject.toml that defines the properties of your app; and you run You can get an initial pyproject.toml by running Run This minimal configuration could be in the docs, though; I'll open an issue to that effect. |
Beta Was this translation helpful? Give feedback.
There's no walk through beyond the documentation you've already linked.
However there's not that much more to say, either. You need a pyproject.toml that defines the properties of your app; and you run
briefcase packageto generate the package of the app.You can get an initial pyproject.toml by running
briefcase createand then pruning out parts that aren't used; or, you can start with the minimal project definition, replacingsourcesreferences withexternal_package_pathdefinitions: