Metadata-Version: 1.1
Name: sentry-wrapper
Version: 2.0.0
Summary: Forward exceptions raised by a setuptools entrypoint to sentry
Home-page: http://scaleway.com/
Author: Julien Castets
Author-email: castets.j@gmail.com
License: Proprietary
Description: DESCRIPTION
        ===========
        
        sentry-wrapper calls a setuptools entrypoint and sends exceptions to sentry.
        
        
        Usage::
        
            usage: sentry-wrapper [-h] [--dsn SENTRY_DSN] name [dist] [group] [-- ...]
        
            positional arguments:
              name              Entry point name (eg. my-entrypoint)
              dist              Distribution name (eg. my-project==1.2.4, default: same
                                value than name)
              group             Entry point group (default: console-scripts)
        
            optional arguments:
              -h, --help        show this help message and exit
              --dsn SENTRY_DSN  Sentry DSN
        
            Extra arguments are given as is to the wrapped entrypoint.
        
        
        INSTALLATION
        ============
        
        To install in a virtualenv::
        
            $> virtualenv myenv
            $> source myenv/bin/activate
            $> pip install sentry-wrapper
        
        
        DEVELOP
        =======
        
        To start hacking on sentry-wrapper::
        
            $> virtualenv myenv
            $> source myenv/bin/activate
            $> git clone git@github.com:brmzkw/sentry-wrapper.git
            $> cd sentry-wrapper
            $> pip install -e .
        
        
        CONTRIBUTORS
        ============
        
        * `Bastien Chatelard <https://github.com/bchatelard/>`_
        * `Julien Castets <https://github.com/brmzkw/>`_
        
        sentry-wrapper Changelog
        ========================
        
        2.0.0 (2015-08-20)
        ------------------
        
        * Accept extra arguments that are given to the wrapped command, like::
        
          sentry-wrapper entrypoint -- arg1 arg2 arg3
        
        1.0.0 (2015-04-20)
        ------------------
        
        * Initial version.
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet
Classifier: Topic :: System :: Distributed Computing
