├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── __init__.py ├── config.py ├── local └── __init__.py ├── plugin.py ├── requirements.txt └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtryder/Scores/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtryder/Scores/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtryder/Scores/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtryder/Scores/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtryder/Scores/HEAD/__init__.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtryder/Scores/HEAD/config.py -------------------------------------------------------------------------------- /local/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtryder/Scores/HEAD/local/__init__.py -------------------------------------------------------------------------------- /plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtryder/Scores/HEAD/plugin.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtryder/Scores/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewtryder/Scores/HEAD/test.py --------------------------------------------------------------------------------