├── .gitignore ├── .travis.yml ├── BMLib.py ├── BoxMaker.manifest ├── BoxMaker.py ├── LICENSE ├── README.md ├── resources └── Box.png └── tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecyca/BoxMaker/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecyca/BoxMaker/HEAD/.travis.yml -------------------------------------------------------------------------------- /BMLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecyca/BoxMaker/HEAD/BMLib.py -------------------------------------------------------------------------------- /BoxMaker.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecyca/BoxMaker/HEAD/BoxMaker.manifest -------------------------------------------------------------------------------- /BoxMaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecyca/BoxMaker/HEAD/BoxMaker.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecyca/BoxMaker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecyca/BoxMaker/HEAD/README.md -------------------------------------------------------------------------------- /resources/Box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecyca/BoxMaker/HEAD/resources/Box.png -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukecyca/BoxMaker/HEAD/tests.py --------------------------------------------------------------------------------