OBSPlugin/__install__.py

6 lines
257 B
Python
Raw 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
print("installing")
toplevel = dirname(abspath(__file__))
2024-02-15 09:03:32 +00:00
create_venv(join(toplevel, ".venv"), join(toplevel, "backend/requirements.txt"))