Files
parsedmarc/build.sh
T
2025-01-09 22:08:42 -05:00

22 lines
320 B
Bash
Executable File

#!/usr/bin/env bash
set -e
if [ ! -d "venv" ]; then
virtualenv venv || exit
fi
. venv/bin/activate
pip install .[build]
ruff format .
ruff check .
cd docs
make clean
make html
touch build/html/.nojekyll
cp -rf build/html/* ../../parsedmarc-docs/
cd ..
./sortmaps.py
python3 tests.py
rm -rf dist/ build/
hatch build