summaryrefslogtreecommitdiff
path: root/xnt/commands/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'xnt/commands/__init__.py')
-rw-r--r--xnt/commands/__init__.py41
1 files changed, 0 insertions, 41 deletions
diff --git a/xnt/commands/__init__.py b/xnt/commands/__init__.py
deleted file mode 100644
index 583558b..0000000
--- a/xnt/commands/__init__.py
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/usr/bin/env python
-"""Commands Module"""
-
-# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
-
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-from xnt.commands.help import HelpCommand
-from xnt.commands.listtargets import ListTargetsCommand
-from xnt.commands.version import VersionCommand
-from xnt.commands.target import TargetCommand
-
-COMMANDS = {
- HelpCommand.name: HelpCommand,
- ListTargetsCommand.name: ListTargetsCommand,
- VersionCommand.name: VersionCommand,
- TargetCommand.name: TargetCommand,
-}
-
-def get_summaries(ignore_hidden=True):
- """Return a list of summaries about each command"""
- items = []
-
- for name, command_class in COMMANDS.items():
- if ignore_hidden and command_class.hidden:
- continue
- items.append((name, command_class.summary))
-
- return sorted(items)