Skip to content
Snippets Groups Projects
Commit 485066d3 authored by dh00601's avatar dh00601
Browse files

adding functions to install the package

parent 7f08f7bf
No related branches found
No related tags found
No related merge requests found
0.9.1
#!/bin/bash
# Script to install binarycpython in the current venv
VERSION_NUMBER=$(cat "VERSION")
echo "installing binarcpython version $VERSION_NUMBER"
python setup.py clean
pip uninstall binarycpython
python setup.py build --force
python setup.py sdist
pip install -v dist/binarycpython-$VERSION_NUMBER.tar.gz
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment