sys._framework

Here are the examples of the python api sys._framework taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

3 Source : py_info.py
with MIT License
from nirzaf

    def _distutils_install():
        # follow https://github.com/pypa/pip/blob/master/src/pip/_internal/locations.py#L95
        # note here we don't import Distribution directly to allow setuptools to patch it
        d = dist.Distribution({"script_args": "--no-user-cfg"})  # conf files not parsed so they do not hijack paths
        if hasattr(sys, "_framework"):
            sys._framework = None  # disable macOS static paths for framework
        i = d.get_command_obj("install", create=True)
        i.prefix = os.sep  # paths generated are relative to prefix that contains the path sep, this makes it relative
        i.finalize_options()
        result = {key: (getattr(i, "install_{}".format(key))[1:]).lstrip(os.sep) for key in SCHEME_KEYS}
        return result

    @property