You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to the need of publishing our app to various channels, the build method are now too diverse:
First, we use Poetry both to manage dependency and build, with the pyproject.toml file being the main script for building. However, the 2nd purpose failed, because our app cannot be distributed via PyPI (due to the inclusion of desktop-integration files like icons, *.desktop file).
Then, we need to build Debian package. We need to generate setup.py file from pyproject.toml, because Debian doesn't support Poetry.
Next, we need to build Faltpak package. Because of it, meson.build is added.
So, we are having 3 build scripts: pyproject.toml, setup.py, meson.build. Pretty cluttering now.
The text was updated successfully, but these errors were encountered:
Due to the need of publishing our app to various channels, the build method are now too diverse:
So, we are having 3 build scripts: pyproject.toml, setup.py, meson.build. Pretty cluttering now.
The text was updated successfully, but these errors were encountered: