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