sonntagsgesicht/auxilium

View on GitHub
auxilium/add_arguments/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
# -*- coding: utf-8 -*-

# auxilium
# --------
# Python project for an automated test and deploy toolkit.
#
# Author:   sonntagsgesicht
# Version:  0.2.4, copyright Wednesday, 20 October 2021
# Website:  https://github.com/sonntagsgesicht/auxilium
# License:  Apache License 2.0 (see LICENSE file)


from .root import add_arguments as root  # noqa: F401
from .create import add_arguments as create  # noqa: F401
from .update import add_arguments as update  # noqa: F401
from .test import add_arguments as test  # noqa: F401
from .doc import add_arguments as doc  # noqa: F401
from .build import add_arguments as build  # noqa: F401
from .python import add_arguments as python  # noqa: F401

from .formatter import ArgumentDefaultsAndConstsHelpFormatter  # noqa: F401
from .parsers import add_parser  # noqa: F401