├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── lightify └── __init__.py ├── setup.py └── test.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.py python 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasofthings/python-lightify/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasofthings/python-lightify/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasofthings/python-lightify/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasofthings/python-lightify/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasofthings/python-lightify/HEAD/README.rst -------------------------------------------------------------------------------- /lightify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasofthings/python-lightify/HEAD/lightify/__init__.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasofthings/python-lightify/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasofthings/python-lightify/HEAD/test.py --------------------------------------------------------------------------------