├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── README.rst ├── dev-requirements.txt ├── docs ├── Makefile ├── api.rst ├── conf.py └── index.rst ├── packer.py ├── setup.py ├── tester.py ├── tests ├── __init__.py ├── resources │ ├── packerfile.json │ └── simple-test.json └── test_packer.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nir0s/python-packer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nir0s/python-packer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nir0s/python-packer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nir0s/python-packer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nir0s/python-packer/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nir0s/python-packer/HEAD/README.rst -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nir0s/python-packer/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nir0s/python-packer/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nir0s/python-packer/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nir0s/python-packer/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nir0s/python-packer/HEAD/docs/index.rst -------------------------------------------------------------------------------- /packer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nir0s/python-packer/HEAD/packer.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nir0s/python-packer/HEAD/setup.py -------------------------------------------------------------------------------- /tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nir0s/python-packer/HEAD/tester.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'nir0s' 2 | -------------------------------------------------------------------------------- /tests/resources/packerfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nir0s/python-packer/HEAD/tests/resources/packerfile.json -------------------------------------------------------------------------------- /tests/resources/simple-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nir0s/python-packer/HEAD/tests/resources/simple-test.json -------------------------------------------------------------------------------- /tests/test_packer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nir0s/python-packer/HEAD/tests/test_packer.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nir0s/python-packer/HEAD/tox.ini --------------------------------------------------------------------------------