]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - src/allmydata/__init__.py
import version class and make-version script from pyutil -- fixes win32 build, improv...
[tahoe-lafs/tahoe-lafs.git] / src / allmydata / __init__.py
1
2 """
3 Decentralized storage grid.
4
5 maintainer web site: U{http://allmydata.com/}
6
7 community web site: U{http://allmydata.org/}
8 """
9
10 __version__ = "unknown"
11 try:
12     from _version import __version__
13 except ImportError:
14     # we're running in a tree that hasn't run misc/make-version.py, so we
15     # don't know what our version is. This should not happen very often.
16     pass
17
18 hush_pyflakes = __version__
19 del hush_pyflakes
20