LW1 | ||
scada_system | ||
.gitignore | ||
README.md |
advanced-python-homework-2023
Installation
-
Install
Python
-
Install
python3-venv
by the following command:apt install python3-venv
-
Create and activate your virtual environment following the instructions
-
Install the
requirements.txt
dependencies following the commands:
cd ./scada_system
pip3 install -r requirements.txt
- Install the package in editable mode:
pip3 install -e .
- To generate documentation in HTML format, you need to run the following commands:
cd ./docs
make html
Tests
- To run the tests, go to the
scada_system
directory and run the following command:
python3 -m unittest