Metadata-Version: 1.1
Name: energy
Version: 0.1.3
Summary: Energy system for social games
Home-page: http://packages.python.org/energy
Author: Heungsub Lee
Author-email: h@subl.ee
License: BSD
Description: 
        Energy
        ~~~~~~
        
        Energy is a consumable and recoverable stuff in social games. It limits how far
        players can advance in each session.
        
        Players use energy to do actions like farming, housing, or social actions. Then
        consumed energy will be recovered after few minutes. Recovery is the essence of
        energy system. It will make players to come back to the game periodically.
        
        In popular social games such as `FarmVille <http://www.facebook.com/FarmVille>`_
        or `Zoo Invasion <http://apps.facebook.com/zooinvasion/?campaign=sublee&kt_st1=
        project&kt_st2=energy&kt_st3=pypi>`_ or `The Sims Social <http://www.facebook.
        com/TheSimsSocial>`_, this system drives high retention rate.
        
        >>> energy = Energy(10, recovery_interval=300)
        >>> print energy
        <Energy 10/10>
        >>> energy.use()
        >>> print energy
        <Energy 9/10 recover in 05:00>
        
        Links
        `````
        
        * `GitHub repository <http://github.com/sublee/energy>`_
        * `development version
          <http://github.com/sublee/energy/zipball/master#egg=energy-dev>`_
        
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: Jython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Games/Entertainment
