This repository has been archived on 2026-01-16. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
flatpak-runtime-config/usercustomize.py
2018-09-28 09:38:20 -04:00

9 lines
240 B
Python

import site
import sysconfig
purelib = sysconfig.get_path('purelib', vars=dict(base='/app'))
platlib = sysconfig.get_path('platlib', vars=dict(platbase='/app'))
site.addsitedir(purelib)
if platlib != purelib:
site.addsitedir(platlib)