mirror of
https://github.com/TREX-CoE/qmckl.git
synced 2024-11-19 20:42:50 +01:00
14 lines
175 B
Bash
14 lines
175 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -x
|
||
|
set -e
|
||
|
|
||
|
./build_pyqmckl.sh
|
||
|
|
||
|
# copy swig-produced pyqmckl.py module into the pyqmckl/ folder
|
||
|
cp src/pyqmckl.py pyqmckl/
|
||
|
|
||
|
# install using pip
|
||
|
pip install .
|
||
|
|