2007-05-01 13:23:15 -07:00
|
|
|
|
2007-04-19 13:47:59 -07:00
|
|
|
"""
|
2007-04-30 13:06:09 -07:00
|
|
|
Decentralized storage grid.
|
2007-04-19 13:47:59 -07:00
|
|
|
|
|
|
|
maintainer web site: U{http://allmydata.com/}
|
|
|
|
|
|
|
|
community web site: U{http://allmydata.org/}
|
|
|
|
"""
|
|
|
|
|
2007-05-03 20:14:07 -07:00
|
|
|
__version__ = "unknown"
|
|
|
|
try:
|
2007-08-16 14:09:30 -07:00
|
|
|
from _version import __version__
|
2007-05-03 20:14:07 -07:00
|
|
|
except ImportError:
|
|
|
|
# we're running in a tree that hasn't run misc/make-version.py, so we
|
|
|
|
# don't know what our version is. This should not happen very often.
|
|
|
|
pass
|
2007-04-19 13:47:59 -07:00
|
|
|
|
2007-05-03 20:14:07 -07:00
|
|
|
hush_pyflakes = __version__
|
|
|
|
del hush_pyflakes
|
2007-04-19 13:47:59 -07:00
|
|
|
|