To run this project, ensure the following dependency is installed: * PyTest (for running tests).
To install the project's dependancies you need to create a python virtual enviroment in the project's root directory.
python -m venv venvAfter runnning it sucessfully, run the following command to activate the terminal:
venv/Scripts/activateIf you encounter a permission policy issue, enter the following command:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser source venv/bin/activateAfter activating the virtual environment, install the required dependencies:
pip install -r requirements.txtAfter setting up the environment, you can launch the RPG game:
python main.pyTo verify the functionality of the game, run the tests using PyTest:
python -m pytestThis will execute all tests in the tests/ directory and display the results.
Feel free to contribute to this project by submitting issues or pull requests. Please include test cases for any new features or bug fixes.
This project is licensed under the MIT License.