Skip to main content

Managing dependencies for other python packages, especially when multiple alternatives exist for the same module.

Project description

PyPI - Python Version PyPI version GitHub

Flexidep

Package to manage optional and alternate dependencies in python packages.

This package checks for dependencies at runtime and provides an interface to install them. It supports multiple alternatives, so that the user can choose which package to install.

Choice for pip and conda are provided.

Usage

This package is intended to be configured using a cfg file (similar to setup.cfg) and to be called at runtime during the initialization of the containing module or program, before any import is done. It reads all the modules that are required and tries to install them.

The installation can either be interactive or automatic, depending on the intended usage.

For the interactive installation, a command-line interface or a GUI based on tk are provided.

Integration in your code

from flexidep import DependencyManager, SetupFailedError, OperationCanceledError

dm = DependencyManager()
dm.load_file('test.cfg')
try:
    dm.install_interactive(force_optional=True)
except OperationCanceledError:
    print('Installation canceled')
except SetupFailedError:
    print('Setup failed')

If you have a configuration file inside a python module, you can use the following simplified code:

from flexidep import standard_install_from_resource
from . import resources # assuming that "resources" is the name of the module where you have the configuration file
standard_install_from_resource(resources, 'runtime_dependencies.cfg')

For manual control, a DependencyManager object is created with the following parameters:

DependencyManager(
    config_file=None,
    config_string=None,
    unique_id=None,
    interactive_initialization=True,
    use_gui=False,
    install_local=False,
    package_manager=PackageManagers.pip,
    extra_command_line='',
)
  • config_file: path to the configuration file. It can be a string, a Path-like object or a file-like object. Note: all configuration options in a config file supersede the options specified in the constructor.
  • config_string: string containing the configuration in config file format. If both config_file and config_string are provided, the file is used.
  • unique_id: unique identifier for the project. It is used to store the configuration in the user's home directory.
  • interactive_initialization: if True, the user is asked to choose the global installation parameters.
  • use_gui: if True, a GUI is used for the interactive installation.
  • install_local: if True, the packages are installed locally in the current environment (--user flag to pip)
  • package_manager: package manager to use. Can be PackageManagers.pip or PackageManagers.conda.
  • extra_command_line: extra command line arguments to pass to the package manager.

The main functions that are used are:

  • load_file(file) to load the configuration file. file can be a file name, a file object, or a path-like object.
  • install_interactive(force_optional) to install the dependencies in interactive mode. If force_optional is false, optional dependencies will only be asked once and the choice will be remembered. If it is true, the choices are cleared and the optional dependencies are asked again.
  • install_auto(install_optional) to install the dependencies in automatic mode. If install_optional is true, optional dependencies are installed too, otherwise only the required ones are.

Utility functions

The following functions are provided for convenience:

  • is_conda() returns True if the current environment is a conda environment.
  • is_frozen() returns True if the current environment is frozen (e.g. using pyinstaller).

Configuration file

A typical configuration file is the following:

[Global]
# Whether to let the user specify the global options (e.g. pip or conda)
interactive initialization = True
# Whether to use the tk gui or not
use gui = True
# Whether to pass the --user flag to pip
local install = False
# Which package manager to use (pip and conda are currently supported)
package manager = pip
# A unique identifier for the app that calls the package
# (used to store the optional package choices)
id = com.myname.myproject
# a list (comma or newline-separated) of packages that are optional.
# The default status of a package is required
optional packages =
    tensorflow

# Defines a priority order for the packages to be installed
priority = my_pip_package, tensorflow

# Here you can specify which packages should be uninstalled because they conflict with this package
uninstall = conflict_package
# package-manager-specific packages can be defined like this
uninstall.pip = conflict_package_pip
uninstall.conda = conflict_package_conda

# This section contains list of packages to be installed.
# The name of each entry is the name of the *module* that the package provides.
# For example, tensorflow-gpu and tensorflow-cpu both provide the tensorflow module.
# The name of the entry is therefore "tensorflow".
# After the name, the list of packages is given, separated by newlines.
# Environment markers can also be provided, so that the user is only presented with options
# that are compatible with the current environment.
[Packages]
tensorflow =
    tensorflow_gpu ; sys_platform != 'darwin'
    tensorflow_cpu ; sys_platform != 'darwin'
    tensorflow_metal ; sys_platform == 'darwin'
    tensorflow_macos ; sys_platform == 'darwin'

# Alternatives to be checked can also be specified, separated by a pipe character.
# For example, this checks that either PyQt5 or PySide2 is installed and prompts to
# install one of them if none is found.
PyQt5|PySide2 =
    PyQt5
    PySide2

# dependencies and conflicts can be specified for each alternative
# this is useful if this package automatically installs something that
# is unwanted with the rest of the package.
package_with_dependencies =
    package_1 +install_before_package1 +install_before_package2 -uninstall_before_package --uninstall_after_package ++install_after_package

[Pip]
# pip-specific packages. These packages will only be installed if pip is used as a manager.
my_pip_package =
    pip_package_1
    pip_package_2

[Conda]
# conda-specific packages
``

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

flexidep-0.0.14.tar.gz (20.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

flexidep-0.0.14-py3-none-any.whl (20.4 kB view details)

Uploaded Python 3

File details

Details for the file flexidep-0.0.14.tar.gz.

File metadata

  • Download URL: flexidep-0.0.14.tar.gz
  • Upload date:
  • Size: 20.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.9

File hashes

Hashes for flexidep-0.0.14.tar.gz
Algorithm Hash digest
SHA256 f347eed747baeea669ee4a3d10f51949cd5090f2b9bd2b7f879484b18d37bb53
MD5 37d8ff780551428e2afe6ea2f7b9b5e2
BLAKE2b-256 04bdd048544c921960d862c740a2a03c01b8a361fc3e8d9cf110f52b13ac7044

See more details on using hashes here.

File details

Details for the file flexidep-0.0.14-py3-none-any.whl.

File metadata

  • Download URL: flexidep-0.0.14-py3-none-any.whl
  • Upload date:
  • Size: 20.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.9

File hashes

Hashes for flexidep-0.0.14-py3-none-any.whl
Algorithm Hash digest
SHA256 f7621764564adfa0cb9c95ec8b2b568952968956116f40cae16f5fc97f82c523
MD5 538537d865ecafe0a20e98d52fb2c1a0
BLAKE2b-256 71734a0c41188a2cbd2f8a7bc0e78dbfc58d063bfe47397c06fe168e0537e74e

See more details on using hashes here.

Supported by

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