Skip to content

Commit

Permalink
add a main script to run python -m neuralprophet and print version
Browse files Browse the repository at this point in the history
  • Loading branch information
noxan committed Nov 22, 2022
1 parent 169e0b3 commit e2996bc
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions neuralprophet/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
"""
Invokes neuralprophet when module is run as a script.
"""

from neuralprophet._version import __version__

if __name__ == "__main__":
print(__version__)

0 comments on commit e2996bc

Please sign in to comment.