-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add worktree command, use pyproject.toml
* add `worktree` cli * use pyproject toml
- Loading branch information
1 parent
24fadb9
commit 8c15564
Showing
13 changed files
with
788 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
from .node import Node | ||
from .decorator import node, build_node | ||
|
||
__version__ = "0.0.1" | ||
__version__ = "0.0.4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.