Metadata-Version: 1.1
Name: Emote
Version: 0.1.1
Summary: Simple emoji lookups for Python.
Home-page: https://github.com/geowurster/Emote
Author: Kevin Wurster
Author-email: wursterk@gmail.com
License: New BSD License

Copyright (c) 2015, Kevin D. Wurster
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this
  list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice,
  this list of conditions and the following disclaimer in the documentation
  and/or other materials provided with the distribution.

* The names of its contributors may not be used to endorse or promote products
  derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Description: =====
        Emote
        =====
        
        
        .. image:: https://travis-ci.org/geowurster/Emote.svg?branch=master
            :target: https://travis-ci.org/geowurster/Emote
        
        
        .. image:: https://coveralls.io/repos/geowurster/Emote/badge.svg?branch=master
            :target: https://coveralls.io/r/geowurster/Emote
        
        Simple `emoji <http://www.unicode.org/Public/emoji/1.0/full-emoji-list.html>`__ lookups for Python.
        
        
        Example
        =======
        
        .. code-block:: python
        
            import emote
            print(emote.lookup(':water_wave:'))
            🌊
            print(emote.decode('🌊'))
            water_wave
        
        
        Installation
        ============
        
        Via pip:
        
        .. code-block:: console
        
            $ pip install emote --upgrade
        
        From master branch:
        
        .. code-block:: console
        
            $ git clone https://github.com/geowurster/Emote.git
            $ cd Emote
            $ python setup.py install
        
        
        Developing
        ==========
        
        .. code-block:: console
        
            $ git clone https://github.com/geowurster/Emote.git
            $ cd Emote
            $ virtualenv venv
            $ source venv/bin/activate
            $ pip install -r requirements-dev.txt -e .
            $ nosetests --with-coverage
        
        
        License
        =======
        
        See ``LICENSE.txt``.
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Information Technology
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Multimedia :: Graphics :: Presentation
Classifier: Topic :: Utilities
