python-scruffy 0.3.3-3 source package in Ubuntu

Changelog

python-scruffy (0.3.3-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Bump debhelper from deprecated 9 to 12.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.

  [ Ondřej Nový ]
  * d/control: Update Maintainer field with new Debian Python Team
    contact address.
  * d/control: Update Vcs-* fields with new Debian Python Team Salsa
    layout.

  [ Debian Janitor ]
  * Bump debhelper from old 12 to 13.

 -- Sandro Tosi <email address hidden>  Fri, 03 Jun 2022 23:55:23 -0400

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe misc
Lunar release universe misc

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-scruffy_0.3.3-3.dsc 2.0 KiB b29432bab546ed3bd2b2dde6e4fde8ce35c6a322f4925f4c751100c1bc77e8cb
python-scruffy_0.3.3.orig.tar.gz 8.6 KiB 54b17f550628167d16b1c651d8dff1213d8eb61b728e949ef63aa201c08d4ba2
python-scruffy_0.3.3-3.debian.tar.xz 2.5 KiB 66bd5810b684ae361cda1544c03e4ea28c951ea2a04a830344ea0c23a9dae343

Available diffs

No changes file available.

Binary packages built by this source

python3-scruffy: framework for taking care of a bunch of boilerplate in Python3 apps

 Scruffy is a framework for taking care of a bunch of boilerplate in
 Python apps. It handles the loading of configuration files, the loading
 and management of plugins, and the management of other filesystem
 resources such as temporary files and directories, log files, etc.
 .
 A typical use case for Scruffy is a command-line Python tool with some
 or all of the following requirements:
 .
  * Read a set of configuration defaults
  * Read a local configuration file and apply it on top of the defaults
  * Allow overriding some configuration options with command line flags
    or at runtime
  * Load a core set of Python-based plugins
  * Load a set of user-defined Python-based plugins
  * Generate log files whose name, location and other logging settings
    are based on configuration
  * Store application state between runs in a file or database
 .
 This package installs the library for Python 3.