Metadata-Version: 2.1
Name: friendly-name-mixin
Version: 1.0.3
Summary: Mixin class for extracting friendly names from classes
Home-page: https://github.com/petarmaric/friendly_name_mixin
Author: Petar Maric
Author-email: petarmaric@uns.ac.rs
License: BSD
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities

About
=====

Mixin class for extracting friendly names from classes.

`Continuous integration`_ is powered by `Jenkins`_.

.. image:: http://ci.petarmaric.com/job/friendly_name_mixin/badge/icon
   :target: http://ci.petarmaric.com/job/friendly_name_mixin/

.. _`Continuous integration`: http://ci.petarmaric.com/job/friendly_name_mixin/
.. _`Jenkins`: https://jenkins-ci.org/

Installation
============

To install ``friendly_name_mixin`` run::

    $ pip install friendly_name_mixin


Usage example
=============

::

    >>> from friendly_name_mixin import FriendlyNameFromClassMixin

    >>> class IsHTML5BetterThanFlash11OrIsItMe(FriendlyNameFromClassMixin):
    ...     answer = 'yes'

    >>> print IsHTML5BetterThanFlash11OrIsItMe().name
    Is HTML5 Better Than Flash11 Or Is It Me


Contribute
==========

If you find any bugs, or wish to propose new features `please let me know`_.

If you'd like to contribute, simply fork `the repository`_, commit your changes
and send a pull request. Make sure you add yourself to `AUTHORS`_.

.. _`please let me know`: https://github.com/petarmaric/friendly_name_mixin/issues/new
.. _`the repository`: https://github.com/petarmaric/friendly_name_mixin
.. _`AUTHORS`: https://github.com/petarmaric/friendly_name_mixin/blob/master/AUTHORS


