This repository has been archived on 2022-04-04. You can view files and clone it, but cannot push or open issues or pull requests.

28 lines
593 B
Python

import argparse
import sys
import logging
from qt_common.qt_app_wrapper import QtAppWrapper
from . import ui
def main() -> int:
# Handle program arguments
ap = argparse.ArgumentParser(
prog='anim_stitcher', description='A tool for stitching PNG sequences into sprite sheets')
args = ap.parse_args()
# Setup logging
logging.basicConfig(level=logging.DEBUG)
# Run the application
with QtAppWrapper():
# Create and show the window
w = ui.AnimStitcherWindow()
w.show()
return 0
if __name__ == "__main__":
sys.exit(main())