Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/aiida.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
- name: Installation and setup
shell: bash -l {0}
run: |
pip install -e adis_tools
pip install -e qe_xml_parser
pip install -e python_workflow_definition
conda install -c conda-forge jupyter papermill
verdi presto --profile-name adis
verdi presto --profile-name pwd
- name: Tests
shell: bash -l {0}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/executorlib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Tests
shell: bash -l {0}
run: |
pip install -e adis_tools
pip install -e qe_xml_parser
pip install -e python_workflow_definition
conda install -c conda-forge jupyter papermill
export ESPRESSO_PSEUDO=$(pwd)/espresso/pseudo
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/jobflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
- name: Installation and setup
shell: bash -l {0}
run: |
pip install -e adis_tools
pip install -e qe_xml_parser
pip install -e python_workflow_definition
conda install -c conda-forge jupyter papermill
verdi presto --profile-name adis
verdi presto --profile-name pwd
- name: Tests
shell: bash -l {0}
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pyiron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
- name: Installation and setup
shell: bash -l {0}
run: |
pip install -e adis_tools
pip install -e qe_xml_parser
pip install -e python_workflow_definition
conda install -c conda-forge jupyter papermill
verdi presto --profile-name adis
verdi presto --profile-name pwd
- name: Tests
shell: bash -l {0}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Tests
shell: bash -l {0}
run: |
pip install -e adis_tools
pip install -e qe_xml_parser
pip install -e python_workflow_definition
conda install -c conda-forge jupyter papermill
export ESPRESSO_PSEUDO=$(pwd)/espresso/pseudo
Expand Down
20 changes: 0 additions & 20 deletions adis_tools/pyproject.toml

This file was deleted.

4 changes: 2 additions & 2 deletions postBuild
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pip install -e adis_tools
pip install -e qe_xml_parser
pip install -e python_workflow_definition
verdi presto --profile-name adis
verdi presto --profile-name pwd
13 changes: 13 additions & 0 deletions qe_xml_parser/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "qe_xml_parser"
version = "0.0.1"
description = "Quantum Espresso xml output parser"
authors = [
{ name = "Marnik Bercx", email = "marnik.bercx@psi.ch" },
]
license = { text = "MIT" }
dependencies = ["numpy", "xmlschema", "qe_tools", "ase"]
4 changes: 1 addition & 3 deletions quantum_espresso_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@
import os
import subprocess

from ase.atoms import Atoms
from ase.build import bulk
from ase.io import write
from adis_tools.parsers import parse_pw
from qe_xml_parser.parsers import parse_pw
import matplotlib.pyplot as plt
import numpy as np
from optimade.adapters.structures.ase import from_ase_atoms, get_ase_atoms
from optimade.models.structures import StructureResourceAttributes, StructureResource

Expand Down
Loading