#!/usr/bin/env python3

# SPDX-FileCopyrightText: Chris Pressey, the creator of this work, has dedicated it to the public domain.
# For more information, please refer to <https://unlicense.org/>
# SPDX-License-Identifier: Unlicense

from os.path import realpath, dirname, join
import sys

tamsin_dir = join(dirname(realpath(sys.argv[0])), '..')
sys.path.insert(0, join(tamsin_dir, 'src'))

from tamsin.main import main


if __name__ == '__main__':
    main(sys.argv[1:], tamsin_dir=tamsin_dir)
