OBSPlugin/__install__.py

5 lines
251 B
Python
Raw Permalink Normal View History

2024-01-14 12:56:10 +00:00
from streamcontroller_plugin_tools.installation_helpers import create_venv
from os.path import join, abspath, dirname
toplevel = dirname(abspath(__file__))
2024-03-27 08:54:53 +00:00
create_venv(join(toplevel, "backend", ".venv"), join(toplevel, "backend", "requirements.txt"))