Skip to content

Commit

Permalink
build: enable calling toolkit as module
Browse files Browse the repository at this point in the history
With the __main__.py file, eis_toolkit can be called with:

python3 -m eis_toolkit --help
  • Loading branch information
nialov committed Dec 18, 2023
1 parent 8da8154 commit 42039b7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions eis_toolkit/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from eis_toolkit.cli import app

if __name__ == "__main__":
app()

0 comments on commit 42039b7

Please sign in to comment.