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'