Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make adis_tools an installable package #57

Merged
merged 3 commits into from
Jan 29, 2025
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
3 changes: 2 additions & 1 deletion .github/workflows/aiida.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
Expand All @@ -22,6 +22,7 @@ jobs:
shell: bash -l {0}
run: |
pip install -e aiida_qe_basic
pip install -e adis_tools
conda install -c conda-forge jupyter papermill
verdi presto
export ESPRESSO_PSEUDO=$(pwd)/espresso/pseudo
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
Expand All @@ -22,6 +22,7 @@ jobs:
shell: bash -l {0}
run: |
pip install -e aiida_qe_basic
pip install -e adis_tools
conda install -c conda-forge jupyter papermill
export ESPRESSO_PSEUDO=$(pwd)/espresso/pseudo
papermill basic.ipynb basic-out.ipynb -k "python3"
3 changes: 2 additions & 1 deletion .github/workflows/jobflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
Expand All @@ -22,6 +22,7 @@ jobs:
shell: bash -l {0}
run: |
pip install -e aiida_qe_basic
pip install -e adis_tools
conda install -c conda-forge jupyter papermill
export ESPRESSO_PSEUDO=$(pwd)/espresso/pseudo
papermill jobflow.ipynb jobflow-out.ipynb -k "python3"
3 changes: 2 additions & 1 deletion .github/workflows/pyiron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
Expand All @@ -22,6 +22,7 @@ jobs:
shell: bash -l {0}
run: |
pip install -e aiida_qe_basic
pip install -e adis_tools
conda install -c conda-forge jupyter papermill
export ESPRESSO_PSEUDO=$(pwd)/espresso/pseudo
papermill pyiron_base.ipynb pyiron_base-out.ipynb -k "python3"
20 changes: 20 additions & 0 deletions adis_tools/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "adis_tools"
version = "0.0.1"
description = "Common functions for the Ab initio Description of Iron and Steel (ADIS2023): Digitalization and Workflows workshop"
authors = [
{ name = "Jan Janssen", email = "[email protected]" },
{ name = "Janine George", email = "[email protected]" },
{ name = "Marnik Bercx", email = "[email protected]" },
{ name = "Christina Ertural", email = "[email protected]" },
{ name = "Joerg Schaarschmidt", email = "[email protected]" },
{ name = "Sam Dareska" },
{ name = "Leopold Talirz", email = "[email protected]" },
{ name = "Julian Geiger", email = "[email protected]" },
]
license = { text = "MIT" }
dependencies = ["numpy", "xmlschema", "qe_tools", "ase"]
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions postBuild
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
pip install -e aiida_qe_basic
pip install -e adis_tools
verdi presto
Loading