From 9cfd2b9d10fd7f2d60e9009b3a357a3c1fa85335 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 8 Sep 2010 15:50:44 -0400 Subject: [PATCH] Basic structure. --- backuplib/__init__.py | 3 +++ backuplib/cli.py | 11 +++++++++++ backuplib/core.py | 8 ++++++++ 3 files changed, 22 insertions(+) create mode 100644 backuplib/__init__.py create mode 100644 backuplib/cli.py create mode 100644 backuplib/core.py diff --git a/backuplib/__init__.py b/backuplib/__init__.py new file mode 100644 index 0000000..c2fdbad --- /dev/null +++ b/backuplib/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from core import * \ No newline at end of file diff --git a/backuplib/cli.py b/backuplib/cli.py new file mode 100644 index 0000000..3907639 --- /dev/null +++ b/backuplib/cli.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +import plac + +def start(): + """Dispatch backitup commandline application.""" + pass + +if __name__ == '__main__': + start() \ No newline at end of file diff --git a/backuplib/core.py b/backuplib/core.py new file mode 100644 index 0000000..8a160a5 --- /dev/null +++ b/backuplib/core.py @@ -0,0 +1,8 @@ +# -*- coding: utf-8 -*- + +__name__ = 'backitup' +__version__ = '0.0.1' +__build__ = 0x000001 +__license__ = 'MIT' +__author__ = 'Kenneth Reitz & Mike X. O\'Connell' +__copyright__ = '(c) 2010 Kenneth Reitz'