Metadata-Version: 1.1
Name: AceMorse
Version: 1.0
Summary: Library for encoding and decoding Morse code.
Home-page: https://github.com/acecodes/acemorse
Author: Ace Eddleman
Author-email: ace.github@gmail.com
License: MIT
Description: AceMorse
        =======================
        
        AceMorse is designed for encoding and decoding strings of Morse code.
        
        Example usage of AceMorse::
        
            from acemorse import MorseCode
        
            morse = MorseCode()
        
            text = 'Hello world!'
        
            print('Original text: {}'.format(text))
            message = morse.generate(text)
        
            print('Morse code: {}'.format(message))
            translate = morse.translate(message)
        
            print('Back to English: {}'.format(translate))
        
Keywords: sample setuptools development
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
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
