├── .gitignore ├── .gitmodules ├── LICENSE ├── README ├── docs ├── conf.py └── index.rst ├── elo.py ├── elopopulars.py ├── elotests.py ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublee/elo/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublee/elo/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublee/elo/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | Elo, the classic rating system 2 | 3 | by Heungsub Lee 4 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublee/elo/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublee/elo/HEAD/docs/index.rst -------------------------------------------------------------------------------- /elo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublee/elo/HEAD/elo.py -------------------------------------------------------------------------------- /elopopulars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublee/elo/HEAD/elopopulars.py -------------------------------------------------------------------------------- /elotests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublee/elo/HEAD/elotests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublee/elo/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublee/elo/HEAD/tox.ini --------------------------------------------------------------------------------