Skip to content

Commit

Permalink
Add worktree command, use pyproject.toml
Browse files Browse the repository at this point in the history
* add `worktree` cli
* use pyproject toml
  • Loading branch information
superstar54 authored Dec 2, 2023
1 parent 24fadb9 commit 8c15564
Show file tree
Hide file tree
Showing 13 changed files with 788 additions and 61 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
run: sudo apt update && sudo apt install --no-install-recommends libfftw3-dev quantum-espresso

- name: Install Python dependencies
run: pip install -e .
run: pip install -e .[pre-commit,tests]

- name: Copy custom node file, add custom node path to sys path
run: |
Expand Down
2 changes: 1 addition & 1 deletion aiida_worktree/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from .node import Node
from .decorator import node, build_node

__version__ = "0.0.1"
__version__ = "0.0.4"
5 changes: 5 additions & 0 deletions aiida_worktree/cli/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""Sub commands of the ``verdi`` command line interface.
The commands need to be imported here for them to be registered with the top-level command group.
"""
from aiida_worktree.cli import cmd_tree
Loading

0 comments on commit 8c15564

Please sign in to comment.