Update entry point

This commit is contained in:
Loic Guegan 2022-09-11 17:18:38 +02:00
parent d61eb48cf8
commit 30ec71a84c

14
esds/__main__.py Normal file
View file

@ -0,0 +1,14 @@
import sys, argparse
def run(args):
print(args)
def main():
##### Parse arguments
parser = argparse.ArgumentParser(description='ESDS Simulator CLI toolbox. Allow you to run simulations and perform various tasks.')
parser.add_argument("run", help="Run a simulation", nargs="*")
args = parser.parse_args()
##### Run commands
if args.run:
run(args.run)