2026-01-20 15:49:53 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
2026-01-27 10:22:16 +01:00
|
|
|
import sys
|
2026-01-20 15:49:53 +01:00
|
|
|
from argparse import ArgumentParser
|
|
|
|
|
|
2026-01-27 10:22:16 +01:00
|
|
|
from ..App import App
|
2026-01-20 15:49:53 +01:00
|
|
|
from .Cmd import Cmd as CmdBase
|
|
|
|
|
|
|
|
|
|
class CmdProjects(CmdBase): # export
|
|
|
|
|
|
2026-01-27 10:22:16 +01:00
|
|
|
def __init__(self, parent: App) -> None:
|
|
|
|
|
super().__init__(parent, 'projects', help='Project metadata evaluation for building packages')
|
2026-01-20 15:49:53 +01:00
|
|
|
self._add_subcommands()
|
|
|
|
|
|
|
|
|
|
def add_arguments(self, p: ArgumentParser) -> None:
|
|
|
|
|
super().add_arguments(p)
|
|
|
|
|
|
|
|
|
|
def _run(self, args):
|
|
|
|
|
raise Exception("Running with args", args)
|