mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-22 04:18:23 +00:00
19 lines
478 B
Python
19 lines
478 B
Python
"""
|
|
Decentralized storage mesh.
|
|
|
|
maintainer web site: U{http://allmydata.com/}
|
|
|
|
community web site: U{http://allmydata.org/}
|
|
"""
|
|
|
|
from util.version import Version
|
|
|
|
# For an explanation of what the parts of the version string mean,
|
|
# please see pyutil.version.
|
|
__version__ = Version("0.1.1-0-UNSTABLE")
|
|
|
|
# Please put a URL or other note here which shows where to get the branch of
|
|
# development from which this version grew.
|
|
__sources__ = ["http://allmydata.org/source/tahoe",]
|
|
|