/usr/lib/python3/dist-packages/guacamole-0.9.2.egg-info/PKG-INFO is in python3-guacamole 0.9.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129  | Metadata-Version: 1.1
Name: guacamole
Version: 0.9.2
Summary: Guacamole is an command line tool library for Python
Home-page: https://github.com/zyga/guacamole
Author: Zygmunt Krynicki
Author-email: me@zygoon.pl
License: LGPLv3
Description: ============================================================
        Guacamole - Framework for Creating Command Line Applications
        ============================================================
        
        .. image:: https://badge.fury.io/py/guacamole.png
            :target: http://badge.fury.io/py/guacamole
        
        .. image:: https://travis-ci.org/zyga/guacamole.png?branch=master
                :target: https://travis-ci.org/zyga/guacamole
        
        .. image:: https://pypip.in/d/guacamole/badge.png
                :target: https://pypi.python.org/pypi/guacamole
        
        Tools, done right
        =================
        
        Guacamole is a LGPLv3 licensed toolkit for creating good command line
        applications. Guacamole that does the right things for you and makes writing
        applications easier.
        
        .. testsetup::
        
            import guacamole 
        
        .. doctest::
        
            >>> class HelloWorld(guacamole.Command):
            ...     """A simple hello-world application."""
            ...     def register_arguments(self, parser):
            ...         parser.add_argument('name')
            ...     def invoked(self, ctx):
            ...         print("Hello {0}!".format(ctx.args.name))
        
        Running it directly is as simple as calling ``main()``:
        
        .. doctest::
        
            >>> HelloWorld().main(['Guacamole'], exit=False)
            Hello Guacamole!
            0
        
        What you didn't have to do is what matters:
        
         - configure the argument parser
         - define and setup application logging
         - initialize internationalization features
         - add debugging facilities
         - write a custom crash handler
        
        Features
        ========
        
        * Free software: LGPLv3 license
        * Documentation: https://guacamole.readthedocs.org.
        * Create command classes and run them from command line.
        * Group commands to create complex tools.
        * Use recipes, ingredients and spices to customize behavior
        
        
        
        
        
        History
        =======
        
        0.9.2 (2015-08-06)
        ------------------
        
        * Fix https://github.com/zyga/guacamole/issues/11
        
        0.9.1 (2015-08-06)
        ------------------
        
        * Fix https://github.com/zyga/guacamole/issues/9
        
        0.9 (2015-05-11)
        ----------------
        
        * Vastly improved documentation
        * Bugfixes and changes based on early feedback
        * New cmdtree module with two ingredients (for instantiating commands and for
          dispatching the invoked method)
        * Simplified argparse ingredient (for just handling parser)
        * Unit tests and doctests for some of the functionality
        
        0.8 (2015-04-21)
        ----------------
        
        * First release on PyPI.
        
        
        2012-2015
        ---------
        
        * Released on PyPI as a part of plainbox as ``plainbox.impl.clitools``,
          ``plainbox.impl.logging``, ``plainbox.i18n`` and
          ``plainbox.impl.secure.plugins``.
        
Keywords: argparse cli tool command sub-command subcommand
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Natural Language :: English
Classifier: Natural Language :: Polish
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows :: Windows 7
Classifier: Operating System :: Microsoft :: Windows :: Windows XP
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
 |