Introduction
req2flatpak
is a script to convert python package requirements
to a flatpak-builder build module.
The module will install the required python packages
as part of a flatpak build.
Intended Use
req2flatpak is for programmers who want to package a python application using flatpak.
The req2flatpak script takes python package requirements as input, e.g., as
requirements.txt
file. It allows to specify the target platform’s
python version and architecture. The script outputs an automatically
generated flatpak-builder
build module. The build module, if included
into a flatpak-builder build manifest, will install the python packages
using pip.
Getting Started
Install req2flatpak using pip (or any other python package installer),
e.g., by running pip install req2flatpak
.
Prepare a requirements.txt
file with the packages that you want to install as part of a flatpak build.
You need to specify exact versions for all the packages including their dependencies.
(Various tools exist to help creating such a requirements file with fully resolved dependencies and frozen package versions;
for example, you can use
pip-compile or
poetry export to export a suitable requirements.txt
file).
Run req2flatpak.
For example, run this command to generate a flatpak-builder
build module
from your requirements.txt
file:
./req2flatpak.py --requirements-file requirements.txt --target-platforms 310-x86_64 310-aarch64
When invoked like this, req2flatpak will
read the requirements file,
query pypi about available downloads for the requirements,
choose appropriate downloads for the specified target platforms,
and generate a flatpak-builder build module.
The module, if included in a flatpak-builder build manifest,
will install the required packages using pip.
The commandline option to define target platforms uses the format <pythonversion>-<architecture>
.
To learn more about available commandline options,
run req2flatpak.py --help
.
Note that programmatic usage of req2flatpak is also possible. This means you can write a python script to invoke req2flatpak, which allows to tweak the desired behavior in many ways.
Go read the documentation to learn more about req2flatpak’s commandline and Python APIs. The documentation includes further examples to help you get started quickly.
Documentation
Contributing
req2flatpak is developed in an open-source, community-driven way, as a voluntary effort in the authors’ free time.
All contributions are greatly appreciated… pull requests are welcome, and so are bug reports and suggestions for improvement. See req2flatpak’s documentation for how to set up a development environment and how to contribute back to req2flatpak.
License
req2flatpak is MIT-licensed, see the COPYING
file.