Enforce quotes consistency.
[OpenColorIO-Configs.git] / aces_1.0.0 / python / aces_ocio / __init__.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 """
5 ACES OCIO
6 =========
7
8 Usage
9 -----
10
11 Python
12 ******
13
14 >>> import sys
15 >>> sys.path.append('/path/to/script')
16 >>> import create_aces_config as cac
17 >>> acesReleaseCTLDir = '/path/to/github/checkout/releases/v0.7.1/transforms/ctl'
18 >>> configDir = '/path/to/config/dir'
19 >>> cac.createACESConfig(acesReleaseCTLDir, configDir, 1024, 33, True)
20
21 Command Line
22 ************
23
24 From the directory with 'create_aces_config.py':
25
26 $ python create_aces_config.py -a '/path/to/github/checkout/releases/v0.7.1/transforms/ctl' -c '/path/to/config/dir' --lut_resolution_1d 1024 --lut_resolution_3d 33 --keepTempImages
27
28 Build
29 -----
30
31 Mac OS X - Required packages
32 ****************************
33
34 OpenColorIO
35 ___________
36
37 $ brew install -vd opencolorio --with-python
38
39 OpenImageIO
40 ___________
41
42 $ brew tap homebrew/science
43
44 Optional Dependencies
45 _____________________
46
47 $ brew install -vd libRaw
48 $ brew install -vd OpenCV
49 $ brew install -vd openimageio --with-python
50
51 CTL
52 ___
53
54 $ brew install -vd CTL
55
56 OpenColorIO
57 ___________
58
59 *ociolutimage* will build with *openimageio* installed.
60
61 $ brew uninstall -vd opencolorio
62 $ brew install -vd opencolorio --with-python
63 """
64
65 __author__ = 'ACES Developers'
66 __copyright__ = 'Copyright (C) 2014 - 2015 - ACES Developers'
67 __license__ = ''
68 __maintainer__ = 'ACES Developers'
69 __email__ = 'aces@oscars.org'
70 __status__ = 'Production'
71
72 __major_version__ = '1'
73 __minor_version__ = '0'
74 __change_version__ = '0'
75 __version__ = '.'.join((__major_version__,
76                         __minor_version__,
77                         __change_version__))