gui/
Contains code related to the software GUI.
state/
Contaions code related to state management system.
tests/
Contains testing code and test files.
data_processing/
Contains code related to the analysis pipeline including analysis calculations and file creation.
- Additionally,
output/
and saved_runs/
are used to store persistent data and may or may not exist depending on when the software is run.
- Install Python >= 3.7 (activate virtual environment if using one)
- Clone this GitHub repository:
git clone https://github.com/MarcElrick/LiKInS.git
- Install requirements:
cd LiKInS
pip install -r requirements.txt
- Run:
- Python 3.7
- Packages: listed in
requirements.txt
- Tested on Windows 10
pip install pyinstaller
pyinstaller -D main.spec
- Compiled directory found at
/dist/main
. Run via main.exe
.
python -m unittest discover -p test_unit*