├── .gitignore ├── LICENSE ├── PyZOGY ├── __init__.py ├── __main__.py ├── image_class.py ├── subtract.py ├── test │ ├── __init__.py │ ├── mock_image_class.py │ ├── test_subtract.py │ └── test_util.py └── util.py ├── README.md └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguevel/PyZOGY/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguevel/PyZOGY/HEAD/LICENSE -------------------------------------------------------------------------------- /PyZOGY/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PyZOGY/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguevel/PyZOGY/HEAD/PyZOGY/__main__.py -------------------------------------------------------------------------------- /PyZOGY/image_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguevel/PyZOGY/HEAD/PyZOGY/image_class.py -------------------------------------------------------------------------------- /PyZOGY/subtract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguevel/PyZOGY/HEAD/PyZOGY/subtract.py -------------------------------------------------------------------------------- /PyZOGY/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PyZOGY/test/mock_image_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguevel/PyZOGY/HEAD/PyZOGY/test/mock_image_class.py -------------------------------------------------------------------------------- /PyZOGY/test/test_subtract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguevel/PyZOGY/HEAD/PyZOGY/test/test_subtract.py -------------------------------------------------------------------------------- /PyZOGY/test/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguevel/PyZOGY/HEAD/PyZOGY/test/test_util.py -------------------------------------------------------------------------------- /PyZOGY/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguevel/PyZOGY/HEAD/PyZOGY/util.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguevel/PyZOGY/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguevel/PyZOGY/HEAD/setup.py --------------------------------------------------------------------------------