Roles now have some assignments
[OpenColorIO-Configs.git] / aces_1.0.0 / python / bin / generate_lut
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 """
5 Creates the *ACES* configuration.
6 """
7
8 from __future__ import division
9
10 import os
11 import sys
12
13 sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
14
15 from aces_ocio.generate_lut import main
16
17 __author__ = 'ACES Developers'
18 __copyright__ = 'Copyright (C) 2014 - 2015 - ACES Developers'
19 __license__ = ''
20 __maintainer__ = 'ACES Developers'
21 __email__ = 'aces@oscars.org'
22 __status__ = 'Production'
23
24 __all__ = []
25
26 if __name__ == '__main__':
27     main()