32 lines
799 B
Python
32 lines
799 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
# SPDX-License-Identifier: AMPAS
|
|
# Copyright Academy of Motion Picture Arts and Sciences
|
|
"""
|
|
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__ = (
|
|
'Haarm-Pieter Duiker, Thomas Mansencal, Stephen Hill, Kevin Wheatley, '
|
|
'Joseph Goldstone')
|
|
__copyright__ = (
|
|
'Copyright (C) 2014-2021 Academy of Motion Picture Arts and Sciences')
|
|
__license__ = 'Academy of Motion Picture Arts and Sciences License Terms'
|
|
__maintainer__ = 'Academy of Motion Picture Arts and Sciences'
|
|
__email__ = 'acessupport@oscars.org'
|
|
__status__ = 'Production'
|
|
|
|
__all__ = []
|
|
|
|
if __name__ == '__main__':
|
|
main()
|