Basic structure.

This commit is contained in:
Kenneth Reitz
2010-09-08 15:50:44 -04:00
parent 30c54c9528
commit 9cfd2b9d10
3 changed files with 22 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-
from core import *
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import plac
def start():
"""Dispatch backitup commandline application."""
pass
if __name__ == '__main__':
start()
+8
View File
@@ -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'