- Create a virtual environment:
python -m venv venv
source venv/bin/activate # On Windows use: venv\Scripts\activate
- Install dependencies:
pip install numpy unittest
To run the test suite:
python -m unittest tests/test_emotional_decision.py
framework/
- Contains the core decision making logictests/
- Unit tests for the framework