File: DisplayCAL-3DLUT-maker.pyw

package info (click to toggle)
displaycal-py3 3.9.17-2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 29,124 kB
  • sloc: python: 115,810; javascript: 11,545; xml: 598; sh: 257; makefile: 173
file content (14 lines) | stat: -rwxr-xr-x 253 bytes parent folder | download | duplicates (33)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import os

exec(
    open(
        os.path.join(
            os.path.dirname(__file__),
            "scripts",
            os.path.splitext(os.path.basename(__file__))[0].lower(),
        )
    ).read()
)