The objective is to compile qiskit-aakash git repo as a separate python package similar to IBMQ backend
conda create -n aakash-dm python=3
conda activate aakash-dm
python3 setup.py bdist_wheel
python3 -m pip install dist/qc_dm_backend-0.1-py3-none-any.whl
rm -rf dist build qc_dm_backend.egg-info
python3 setup.py bdist_wheel
python3 -m pip install dist/qc_dm_backend-0.1-py3-none-any.whl --force-reinstall --no-deps
cd aakash/circuits/
python3 grover.py
The original repo qiskit-aakash git repo is licensed under Apache License 2.0
And my compilation related changes are licensed under MIT License