Skip to main content

Generates a flatpak-builder build module for installing python packages defined in requirements.txt files.

Project description

req2flatpak

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

Run pip install req2flatpak to install the latest release of req2flatpak.

It is possible to use req2flatpak from the commandline, as well as programmatically from a python script.

Commandline usage means you can invoke req2flatpak’s commandline interface as follows, in order to generate a flatpak-builder build module from given python package requirements:

./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.

Programmatic usage is also possible. This means you can invoke functionality from req2flatpak in your own python script, allowing you to tweak the desired behavior in many ways. The documentation describes req2flatpak’s python api and includes code examples to help you get started quickly.

Documentation

See https://johannesjh.github.io/req2flatpak/

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.

Changelog

v0.2 (2023-06-04) “Yaml”

Highlight: req2flatpak can now generate yaml output.

Features:

  • Adds yaml output. It is now possible to generate yaml output by specifying a .yaml file extension or by specifying the --yaml commandline option.

Bugfixes:

  • Fixes sorting when architecture is None - #34

  • Fixes exception handling with invalid platforms - #39

v0.1 (2022-12-23) “Initial Release”

Highlight: This is the initial release of req2flatpak.

Features:

  • Generates a flatpak-builder build module for given python package requirements; the module will install the required packages as part of a flatpak build.

  • This initial release already comes with documentation, a clean code style, and automated tests that are run using continuous integration.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

req2flatpak-0.2.0.tar.gz (13.3 kB view hashes)

Uploaded Source

Built Distribution

req2flatpak-0.2.0-py3-none-any.whl (12.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page