Clone the project into your machine
git clone https://github.com/prakash-O4/magiccommits.gitActivate virtual environment
python3 -m venv .venvActivate virtual environment
source .venv/bin/activateInstall the dependencies using pip:
pip3 install -r requirements.txtDuring development, to automatically rebuild the package on file changes:
pip3 install -e .If you want to run the package outside of venv then you can build the executable file which will be stored inside the dist/ folder
python3 -m build --sdistAfter building the execcutable, now you can install the file by executing
pip3 install /path/to/dist/***.gzThis will install the magiccommits in your machine locally and you can execute globally.
If you faced any issue then feel free to open PR in https://github.com/prakash-O4/magiccommits/issues.