Metadata-Version: 1.1
Name: NeoPySwitch
Version: 0.2.0
Summary: Python switch implementation
Home-page: https://github.com/thomafred/NeoPySwitch
Author: Thomas Li Fredriksen
Author-email: tom@lifredriksen.no
License: MIT
Description: NeoPySwitch
        ===========
        
        Python ``switch``-statement pseudo-implementation. Mimics C-style switch
        statements.
        
        The following two code blocks should be equivalent:
        
        C/C++
        ~~~~~
        
        .. code:: c
        
            switch(arg):
            {
                case 1:
                    // Handle case
                case 2:
                    // Handle case
                default:
                    // Handle default case
            }
        
        Python
        ~~~~~~
        
        .. code:: python
        
            @SwitchCase
            def case_1(arg1):
                print 'Case 1: ', arg1
        
            @SwitchCase
            def case_2(arg1, arg2):
                print 'Case 2: ', arg2
        
            @SwitchCase
            def default_case(arg1, arg2, arg3):
                print 'Default case: ', arg1, arg2, arg3
        
            PySwitch(3, {
                1: case_1('a'),
                2: case_2('abc', 42),
                }, default_case(13, 'somestring', 3.14))
        
        Installation
        ------------
        
        Simply use pip:
        
        ::
        
            $ pip install NeoPySwitch
        
        Contributing
        ------------
        
        1. Fork it!
        2. Create your feature branch: ``git checkout -b my-new-feature``
        3. Commit your changes: ``git commit -am 'Add some feature'``
        4. Push to the branch: ``git push origin my-new-feature``
        5. Submit a pull request :D
        
        History
        -------
        
        -  0.1.0 - First alpha-release
        
        Credits
        -------
        
        -  `Zeno Rocha <https://github.com/zenorocha>`__ - `GitHub README
           template <https://gist.github.com/zenorocha/4526327>`__
        -  `Ethan Forman <https://bitbucket.org/stoneleaf/>`__ -
           ```setup.py``-reference <https://bitbucket.org/stoneleaf/enum34/src/f24487b45cd041fc9406d67441d2186ac70772b7/setup.py?at=default&fileviewer=file-view-default>`__
        
        License
        -------
        
        The MIT License (MIT) Copyright (c) 2017 Thomas Li Fredriksen
        
        Permission is hereby granted, free of charge, to any person obtaining a
        copy of this software and associated documentation files (the
        "Software"), to deal in the Software without restriction, including
        without limitation the rights to use, copy, modify, merge, publish,
        distribute, sublicense, and/or sell copies of the Software, and to
        permit persons to whom the Software is furnished to do so, subject to
        the following conditions:
        
        The above copyright notice and this permission notice shall be included
        in all copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
        OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
        MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
        IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
        CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
        TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
        SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Classifier: Programming Language :: Python :: 2.4
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Provides: NeoPySwitch
