Installation
The QDecomp package can be installed from source by following the following steps:
Clone the repository
git clone https://github.com/polyquantique/QDecomp.git
cd QDecomp
(Optional) Create and activate a virtual environment
Linux / macOS:
python3 -m venv venv source venv/bin/activate
Windows (Command Prompt):
python -m venv venv venv\Scripts\activate
Install the package and dependencies
Standard installation:
pip install .
Editable (developer) installation:
pip install -e .[dev]
(Optional) Run the tests
pip install pytest
pytest tests