~0x44/nova/config-drive

« back to all changes in this revision

Viewing changes to vendor/python-gflags/debian/control

  • Committer: Jesse Andrews
  • Date: 2010-05-28 06:05:26 UTC
  • Revision ID: git-v1:bf6e6e718cdc7488e2da87b21e258ccc065fe499
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Source: python-gflags
 
2
Section: python
 
3
XS-Python-Version: all
 
4
Priority: optional
 
5
Maintainer: Tim 'mithro' Ansell <mithro@mithis.com>
 
6
Build-Depends-Indep: python-central (>= 0.5.6), python-setuptools (>= 0.6b3-1), python-all
 
7
Build-Depends: debhelper (>= 5.0.38)
 
8
Standards-Version: 3.7.2
 
9
 
 
10
Package: python-gflags
 
11
Architecture: all
 
12
Depends: ${python:Depends}
 
13
XB-Python-Version: ${python:Versions}
 
14
Description: A Python implementation of the Google commandline flags module
 
15
 .
 
16
 GFlags defines a *distributed* command line system, replacing systems like
 
17
 getopt(), optparse and manual argument processing. Rather than an application
 
18
 having to define all flags in or near main(), each Python module defines flags
 
19
 that are useful to it.  When one Python module imports another, it gains
 
20
 access to the other's flags.
 
21
 .
 
22
 It includes the ability to define flag types (boolean, float, interger, list),
 
23
 autogeneration of help (in both human and machine readable format) and reading
 
24
 arguments from a file. It also includes the ability to automatically generate
 
25
 man pages from the help flags.
 
26