diff options
author | Necoro <> | 2007-10-07 17:53:49 +0000 |
---|---|---|
committer | Necoro <> | 2007-10-07 17:53:49 +0000 |
commit | 5eda979fdfd005eff962524bda730a20061b103d (patch) | |
tree | 7ee6f4565feae5745e8f27e012ea6dad40ce4c0a /portato/backend/catapult/__init__.py | |
parent | 00957504111a029bb8950483c0b7a82e6c73166d (diff) | |
download | portato-5eda979fdfd005eff962524bda730a20061b103d.tar.gz portato-5eda979fdfd005eff962524bda730a20061b103d.tar.bz2 portato-5eda979fdfd005eff962524bda730a20061b103d.zip |
first catapult support
Diffstat (limited to 'portato/backend/catapult/__init__.py')
-rw-r--r-- | portato/backend/catapult/__init__.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/portato/backend/catapult/__init__.py b/portato/backend/catapult/__init__.py new file mode 100644 index 0000000..47fc042 --- /dev/null +++ b/portato/backend/catapult/__init__.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- +# +# File: portato/backend/catapult/__init__.py +# This file is part of the Portato-Project, a graphical portage-frontend. +# +# Copyright (C) 2007 René 'Necoro' Neumann +# This is free software. You may redistribute copies of it under the terms of +# the GNU General Public License version 2. +# There is NO WARRANTY, to the extent permitted by law. +# +# Written by René 'Necoro' Neumann <necoro@necoro.net> + +from __future__ import absolute_import + +from .system import CatapultSystem +from .package import CatapultPackage |