1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
Source: stevedore
Section: python
Priority: optional
Maintainer: Debian OpenStack <team+openstack@tracker.debian.org>
Uploaders:
Thomas Goirand <zigo@debian.org>,
Build-Depends:
debhelper-compat (= 10),
dh-python,
openstack-pkg-tools,
python3-all,
python3-openstackdocstheme (>= 1.17.0),
python3-pbr (>= 2.0.0),
python3-setuptools,
python3-sphinx (>= 1.6.2),
Build-Depends-Indep:
python3-coverage,
python3-importlib-metadata,
python3-stestr <!nocheck>,
subunit,
Standards-Version: 4.4.1
Vcs-Git: https://salsa.debian.org/openstack-team/libs/stevedore.git
Vcs-Browser: https://salsa.debian.org/openstack-team/libs/stevedore
Homepage: https://github.com/openstack/stevedore
Package: python-stevedore-doc
Section: doc
Architecture: all
Depends:
${misc:Depends},
${sphinxdoc:Depends},
Description: manage dynamic plugins for Python applications - doc
Python makes loading code dynamically easy, allowing you to configure and
extend your application by discovering and loading extensions (plugins) at
runtime. Many applications implement their own library for doing this, using
__import__ or importlib. stevedore avoids creating yet another extension
mechanism by building on top of setuptools entry points. The code for managing
entry points tends to be repetitive, though, so stevedore provides manager
classes for implementing common patterns for using dynamically loaded
extensions.
.
This package contains the documentation.
Package: python3-stevedore
Architecture: all
Depends:
python3-importlib-metadata,
python3-pbr,
python3-pkg-resources,
${misc:Depends},
${python3:Depends},
${shlibs:Depends},
Description: manage dynamic plugins for Python applications - python3
Python makes loading code dynamically easy, allowing you to configure and
extend your application by discovering and loading extensions (plugins) at
runtime. Many applications implement their own library for doing this, using
__import__ or importlib. stevedore avoids creating yet another extension
mechanism by building on top of setuptools entry points. The code for managing
entry points tends to be repetitive, though, so stevedore provides manager
classes for implementing common patterns for using dynamically loaded
extensions.
.
This package provides the Python 3.x module.
|