blob: f246b082bc2e80abf125f97232dbe7c7a1c8305e [file] [log] [blame]
Henry Schreiner4d9024e2020-08-16 16:02:12 -04001# -*- coding: utf-8 -*-
2import platform
3import sys
4
5LINUX = sys.platform.startswith("linux")
6MACOS = sys.platform.startswith("darwin")
7WIN = sys.platform.startswith("win32") or sys.platform.startswith("cygwin")
8
9CPYTHON = platform.python_implementation() == "CPython"
10PYPY = platform.python_implementation() == "PyPy"
11
12PY2 = sys.version_info.major == 2