summaryrefslogtreecommitdiff
path: root/src/s3ql/__init__.py
blob: c7db3ce1e764511cf9a0e3f9f4001749d0d5d37f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'''
__init__.py - this file is part of S3QL (http://s3ql.googlecode.com)

Copyright (C) 2008-2009 Nikolaus Rath <Nikolaus@rath.org>

This program can be distributed under the terms of the GNU GPLv3.
'''

from __future__ import division, print_function

__all__ = [ 'backends', 'cli', 'parse_args', 'block_cache', "common", 'daemonize', 
            'database', 'fs', 'fsck', 'ordered_dict', 
            'VERSION', 'CURRENT_FS_REV' ]

VERSION = '1.2'
CURRENT_FS_REV = 12