Initialize an argparse object to parse the project directory and the app name.
Source code in dp3/bin/setup.py
| def init_parser(parser):
"""
Initialize an argparse object to parse the project directory and the app name.
"""
parser.add_argument("project_dir", help="The project directory.", type=str)
parser.add_argument("app_name", help="The name of the application.", type=str)
|