├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── README.rst ├── conftest.py ├── deploy.py ├── loco ├── __init__.py ├── loco.py └── utils.py ├── post ├── setup.cfg ├── setup.py ├── tests ├── __init__.py └── all_test.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kootenpv/loco/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kootenpv/loco/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kootenpv/loco/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kootenpv/loco/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kootenpv/loco/HEAD/README.rst -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kootenpv/loco/HEAD/conftest.py -------------------------------------------------------------------------------- /deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kootenpv/loco/HEAD/deploy.py -------------------------------------------------------------------------------- /loco/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kootenpv/loco/HEAD/loco/__init__.py -------------------------------------------------------------------------------- /loco/loco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kootenpv/loco/HEAD/loco/loco.py -------------------------------------------------------------------------------- /loco/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kootenpv/loco/HEAD/loco/utils.py -------------------------------------------------------------------------------- /post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kootenpv/loco/HEAD/post -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_rpm] 2 | doc_files = README.rst 3 | 4 | [wheel] 5 | universal = 1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kootenpv/loco/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/all_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kootenpv/loco/HEAD/tests/all_test.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kootenpv/loco/HEAD/tox.ini --------------------------------------------------------------------------------