requirements.yml file contains the list of all the packages required to run the code in this repository. requirements.yml is generated using the following command:
conda env export --no-builds | grep -v "prefix" > requirements.yml
To create a conda environment using the requirements.yml file, run the following command:
conda env create -f requirements.yml