summaryrefslogtreecommitdiff
path: root/configshell/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'configshell/__init__.py')
-rw-r--r--configshell/__init__.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/configshell/__init__.py b/configshell/__init__.py
new file mode 100644
index 0000000..9bfcdb3
--- /dev/null
+++ b/configshell/__init__.py
@@ -0,0 +1,28 @@
+'''
+This file is part of ConfigShell Community Edition.
+Copyright (c) 2011 by RisingTide Systems LLC
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License as
+published by the Free Software Foundation, version 3 (AGPLv3).
+
+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 Affero General Public License for more details.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>.
+'''
+
+from log import Log
+from console import Console
+from shell import ConfigShell
+from node import ConfigNode, ExecutionError
+from prefs import Prefs
+
+__version__ = 'GIT_VERSION'
+__author__ = "Jerome Martin <jxm@risingtidesystems.com>"
+__url__ = "http://www.risingtidesystems.com"
+__description__ = "A framework to implement simple but nice CLIs."
+__license__ = __doc__