├── .gitignore ├── LICENSE ├── README.md ├── docs ├── .gitignore ├── conf.py └── index.rst ├── gciso ├── __init__.py ├── __main__.py ├── bannerfile.py ├── cli.py ├── dolfile.py ├── gciso.py └── isofilewrapper.py ├── setup.py └── tests ├── .gitignore └── test_gciso.py /.gitignore: -------------------------------------------------------------------------------- 1 | **/__pycache__ 2 | *.egg-info 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfirsich/gciso/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfirsich/gciso/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build/* 2 | Makefile 3 | make.bat 4 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfirsich/gciso/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfirsich/gciso/HEAD/docs/index.rst -------------------------------------------------------------------------------- /gciso/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfirsich/gciso/HEAD/gciso/__init__.py -------------------------------------------------------------------------------- /gciso/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfirsich/gciso/HEAD/gciso/__main__.py -------------------------------------------------------------------------------- /gciso/bannerfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfirsich/gciso/HEAD/gciso/bannerfile.py -------------------------------------------------------------------------------- /gciso/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfirsich/gciso/HEAD/gciso/cli.py -------------------------------------------------------------------------------- /gciso/dolfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfirsich/gciso/HEAD/gciso/dolfile.py -------------------------------------------------------------------------------- /gciso/gciso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfirsich/gciso/HEAD/gciso/gciso.py -------------------------------------------------------------------------------- /gciso/isofilewrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfirsich/gciso/HEAD/gciso/isofilewrapper.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfirsich/gciso/HEAD/setup.py -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | -------------------------------------------------------------------------------- /tests/test_gciso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfirsich/gciso/HEAD/tests/test_gciso.py --------------------------------------------------------------------------------