mirror of
ssh://git.janware.com/janware/proj/jw-pkg
synced 2026-04-28 16:15:24 +02:00
19 lines
505 B
Python
19 lines
505 B
Python
|
|
# -*- coding: utf-8 -*-
|
||
|
|
|
||
|
|
import sys, inspect, re
|
||
|
|
from argparse import ArgumentParser
|
||
|
|
|
||
|
|
from .Cmd import Cmd as CmdBase
|
||
|
|
|
||
|
|
class CmdProjects(CmdBase): # export
|
||
|
|
|
||
|
|
def __init__(self) -> None:
|
||
|
|
super().__init__('projects', help='Project metadata evaluation for building packages')
|
||
|
|
self._add_subcommands()
|
||
|
|
|
||
|
|
def add_arguments(self, p: ArgumentParser) -> None:
|
||
|
|
super().add_arguments(p)
|
||
|
|
|
||
|
|
def _run(self, args):
|
||
|
|
breakpoint()
|
||
|
|
raise Exception("Running with args", args)
|