Metadata-Version: 1.1
Name: rvlm.entrypoint
Version: 0.0.3
Summary: Converts function's signature to getopt-style command line options and arguments.
Home-page: https://bitbucket.org/rvlm/rvlm-entrypoint
Author: Pavel Kretov
Author-email: firegurafiku@gmail.com
License: MIT
Description: rvlm.entrypoint
        ===============
        
        | **Authors:** `Pavel Kretov <mailto:firegirafiku@gmail.com>`_
        | **License:** `MIT <http://opensource.org/licenses/MIT>`_
        | **Language:** Python
        | **Pypi package:** https://pypi.python.org/pypi/rvlm.entrypoint
        | **Documentation:** http://rvlm-entrypoint.readthedocs.org
        
        Converts function's arguments to getopt-style command line options and
        arguments. This may definitely help in writing small and clear scripts, with
        no ugly command line parsing code.
        
        This module can:
        
        * Automatically generate argument parsers basing on "main" function signature
          and docstring.
        * Automatically run the "main" function when a script is called directly,
          but not when it is included as a module.
        
        Right after this module was written, its author discovered for himself
        the `entrypoint` module (https://pypi.python.org/pypi/entrypoint). But it
        appeared to be that original `entrypoint` behaves sometimes in a strange
        way. So, it was decided to continue development, and also to rename this module
        to `rvlm.entrypoint` from former `rvlm.argmap`, becase this name
        sounds better still doesn't introduce names conflict by having a prefix.
        
Keywords: command line,argparse,getopt
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX
Classifier: Topic :: Software Development :: Libraries :: Python Modules
