mirror of
https://github.com/kennethreitz-archive/backitup.git
synced 2026-06-05 23:40:17 +00:00
Basic structure.
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from core import *
|
||||
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import plac
|
||||
|
||||
def start():
|
||||
"""Dispatch backitup commandline application."""
|
||||
pass
|
||||
|
||||
if __name__ == '__main__':
|
||||
start()
|
||||
@@ -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'
|
||||
Reference in New Issue
Block a user