If virtualenv is not installed, install it:
pip install virtualenv
Create a Python virtual environment:
virtualenv env
Activate the virtual environment:
source env/bin/activate
Install the requirement (pytest):
pip install -r requirements.txt
Run the program:
python parse_molecule.py
Launch unit tests:
py.test tests.py