├── .gitignore ├── README.md ├── __init__.py ├── converter.py ├── formats.py ├── macpaint.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoelpatrol/macpaint_file/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoelpatrol/macpaint_file/HEAD/converter.py -------------------------------------------------------------------------------- /formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoelpatrol/macpaint_file/HEAD/formats.py -------------------------------------------------------------------------------- /macpaint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoelpatrol/macpaint_file/HEAD/macpaint.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pypng 2 | 3 | --------------------------------------------------------------------------------