Metadata-Version: 2.1
Name: exceptiom
Version: 1.3.0
Summary: Make python exceptions fun
Home-page: https://github.com/aqua-regia/exceptioms
Author: Syed Hassan Ashraf
Author-email: hassanashraf8888@gmail.com
License: MIT
Description: =========
        exceptiom
        =========
        
        Make python exceptions fun.
        
        Installation
        ============
        
        Install exceptiom using pip.
        
        `pip install exceptiom`
        
        We are on [PyPi](https://pypi.org/project/exceptiom/)
        
        Visit us on [Github](https://github.com/aqua-regia/exceptioms)
        
        Usage
        =====
        Import Exceptiom
        
        `from exceptiom import Exceptiom`
        
        and then raise exceptiom like
        
        ```
        try:
            5 / 0
        except Exception:
            raise Exceptiom('Failed while performing division')
        ```
        
        You can also make it as the base class for all your derived exception.
        
        Instead of doing `class MyException(Exception)` you can write `class MyException(Exceptiom)` 
        
        Contributon
        ===========
        
        To add jokes, just add joke in exceptiom/jokes_en and raise a PR.
        
        For any other features raise a PR
        
        
        For Developers
        ==============
        
        * Version bump
            ```bumpversion --current-version 1.2.0 minor setup.py```
            
        * Publishing to PyPi
            
            1.`python setup.py sdist`
            
            2.`python setup.py sdist`
        
        
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
