13 lines
210 B
Plaintext
13 lines
210 B
Plaintext
|
#! /bin/sh
|
||
|
#
|
||
|
# install.sh
|
||
|
# Copyright (C) 2023 gum <gum@gumvy>
|
||
|
#
|
||
|
# Distributed under terms of the MIT license.
|
||
|
#
|
||
|
|
||
|
python -m venv --prompt break-timer .venv
|
||
|
. .venv/bin/activate
|
||
|
pip install -r requirements.txt
|
||
|
|