clap 0.14.0-3 source package in Ubuntu

Changelog

clap (0.14.0-3) unstable; urgency=medium

  * New Maintainer. (Closes: #977671)
    d/control:
      - Bumped Standards-Version to 4.6.1.
      - Updated Maintainer field with my name and email.
  * d/copyright:
      - Include name new maintainer.
  * d/patches:
      - Added patch file d/patches/01-fix-spelling.patch.
  * d/watch:
      - Updated.

 -- Franklin Timoteo dos Santos <email address hidden>  Mon, 08 Aug 2022 09:57:00 -0300

Upload details

Uploaded by:
Franklin Timoteo dos Santos
Uploaded to:
Sid
Original maintainer:
Franklin Timoteo dos Santos
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

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

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
clap_0.14.0-3.dsc 1.9 KiB 2706710ac7304276b65a96a77940a16faa449d9fe1d451370fa4e08bd216de40
clap_0.14.0.orig.tar.gz 49.5 KiB d51e8a8bcd60978efd3a49d10bf7def0484716f1e4b2af017dddb0d5a89e06a2
clap_0.14.0-3.debian.tar.xz 9.4 KiB f92956b053ccb5d1081c0563f8946fd72a2390d848e1ae45af1d712569bee5a4

Available diffs

No changes file available.

Binary packages built by this source

python3-clap: command line arguments parser

 CLAP aims at being powerful and advanced command line interface library for
 Python 3 language. Having built-in support for modes, optional and obligatory
 options, options with arguments (with type-checking with arbitrary types) it
 enables programmers to create rich command line interfaces for Python 3
 programs.
 .
 Features:
   * Support for single-level and nested modes (with per-mode and global
     options).
   * Support for grouped short options (ls -lhR).
   * Support for long options with or without equal-sign-connected arguments
     (--log=./file.log and --log ./file.log are both correct).
   * Support for option aliases (short/long names).
   * Support for typed arguments (str, int, float built-in and other arbitrary
     types via callbacks).
   * Built-in type checking of option arguments.
   * Support for multiple arguments for options (e.g. --point 0 0).
   * Checking for missing arguments with options which require them.
   * Checking for conflicting options (eg. --quiet must not come with option
     --verbose).
   * Support for options that MUST be passed to the program.
   * Support for options required by other options (e.g. --key requires
     --value).
   * Support for options wanted by other options (e.g. --which wants --this or
     --that or both).
   * Good set of exceptions with detailed error messages.
   * Ability to load interface from JSON descriptions.
   * Automatic generation of help screens (for your-tool help command) with
     per-mode, per-option, and per-operand descriptions, usage examples,
     and more.
   * Support for shortcuts for command names (shortest-unique name is
     sufficient for CLAP to resolve the command, it is not necessary to
     write full names).
 .
 CLAP is not the most easy to use command line arguments parser for Python,
 but that it is one of the most powerful (if not the most powerful) framework
 for writing command line interfaces. With excellent support for modes,
 options, and operands, automatic input verification, and help screen
 generation you get a big return on your investment.