diff --git a/src/tagstudio/__main__.py b/src/tagstudio/__main__.py new file mode 100644 index 000000000..7191833d6 --- /dev/null +++ b/src/tagstudio/__main__.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python +# Copyright (C) 2024 Travis Abendshien (CyanVoxel). +# Licensed under the GPL-3.0 License. +# Created for TagStudio: https://github.com/CyanVoxel/TagStudio + +import sys + +from tagstudio.main import main + +if __name__ == "__main__": + sys.exit(main())