#!/usr/bin/env bash
set -e

echo "Termux scripts are deprecated and will be removed in a future version."

# Install python
pkg install -y python python-pip

# Install Python extensions from PyPi
pip install --user --upgrade -r requirements-offline.txt

# Create data directory
mkdir -p data
