This repo contains tools for building the ACL2020 virtual conference website.
- Python >= 3.7
- virtualenv >= 16.4.3
- GNU Make >= 3.8.1
- Create a new sandbox (aka venv) and install required python libraries into it
virtualenv --python=python3.7 venv source venv/bin/activate # Install Python packages pip install -r requirements-dev.txt
- Run
make
to execute all tests.