11 lines
255 B
Python
11 lines
255 B
Python
import argparse
|
|
|
|
|
|
def create_parser():
|
|
parser = argparse.ArgumentParser(description="foldsite is a dynamic site generator")
|
|
parser.add_argument(
|
|
"--config", type=str, default="config.toml", help="config file path"
|
|
)
|
|
|
|
return parser
|