X-Git-Url: http://users.mur.at/ms/git/gitweb/?p=OpenColorIO-Configs.git;a=blobdiff_plain;f=aces_1.0.1%2Fpython%2Fbin%2Fgenerate_lut;fp=aces_1.0.1%2Fpython%2Fbin%2Fgenerate_lut;h=80a8f0a69eb4aea42f6facfc93a1557ee391060d;hp=0000000000000000000000000000000000000000;hb=22e6f32dc4ea25f99c83a6226cc4907b30b1cfcd;hpb=18a75430917db571c2846873510f77086d885479 diff --git a/aces_1.0.1/python/bin/generate_lut b/aces_1.0.1/python/bin/generate_lut new file mode 100755 index 0000000..80a8f0a --- /dev/null +++ b/aces_1.0.1/python/bin/generate_lut @@ -0,0 +1,27 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +""" +Creates the *ACES* configuration. +""" + +from __future__ import division + +import os +import sys + +sys.path.append(os.path.join(os.path.dirname(__file__), '..')) + +from aces_ocio.generate_lut import main + +__author__ = 'ACES Developers' +__copyright__ = 'Copyright (C) 2014 - 2015 - ACES Developers' +__license__ = '' +__maintainer__ = 'ACES Developers' +__email__ = 'aces@oscars.org' +__status__ = 'Production' + +__all__ = [] + +if __name__ == '__main__': + main()