Metadata-Version: 1.1
Name: elo
Version: 0.1
Summary: A rating system for chess tournaments
Home-page: http://github.com/sublee/elo
Author: Heungsub Lee
Author-email: sub@subl.ee
License: BSD
Description: 
        Elo
        ~~~
        
        An implementation of the Elo algorithm for Python. Elo is a rating system among
        game players and it is used on many chess tournaments to rank.
        
        .. sourcecode:: pycon
        
           >>> from elo import rate_1vs1
           >>> rate_1vs1(800, 1200)
           (809.091, 1190.909)
        
        Links
        `````
        
        - `GitHub repository <http://github.com/sublee/elo/>`_
        - `development version
          <http://github.com/sublee/elo/zipball/master#egg=elo-dev>`_
        
        See Also
        ````````
        
        - `Multiplayer Elo Calculator <http://elo.divergentinformatics.com/>`_
        - `TrueSkill for Python <http://trueskill.org/>`_
        
        
Platform: any
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Games/Entertainment
