├── .flake8 ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── setup.py ├── update_checker.py └── update_checker_test.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboe/update_checker/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboe/update_checker/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboe/update_checker/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboe/update_checker/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.md *.txt 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboe/update_checker/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboe/update_checker/HEAD/setup.py -------------------------------------------------------------------------------- /update_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboe/update_checker/HEAD/update_checker.py -------------------------------------------------------------------------------- /update_checker_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboe/update_checker/HEAD/update_checker_test.py --------------------------------------------------------------------------------