mirror of
https://github.com/TREX-CoE/qmckl.git
synced 2024-11-19 12:32:40 +01:00
18 lines
224 B
Bash
Executable File
18 lines
224 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
set -e
|
|
|
|
./build_pyqmckl.sh
|
|
|
|
# copy swig-produced pyqmckl.py module into the pyqmckl/ folder
|
|
#cp src/qmckl.py qmckl/
|
|
cp src/qmckl.py ./
|
|
|
|
# install using pip
|
|
pip install .
|
|
|
|
cd test
|
|
python test_api.py
|
|
cd ..
|