mirror of
https://github.com/TREX-CoE/qmckl.git
synced 2025-04-29 11:54:48 +02:00
14 lines
175 B
Bash
Executable File
14 lines
175 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/pyqmckl.py pyqmckl/
|
|
|
|
# install using pip
|
|
pip install .
|
|
|