From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Sun, 14 Nov 2010 07:40:40 +0000 (-0800)
Subject: setup: specify that the version file must go into src/allmydata/_version.py . fixes... 
X-Git-Url: https://git.rkrishnan.org/components/com_hotproperty/frontends/status?a=commitdiff_plain;h=e03206cbdf21789391ed3d189e5c06501ada1bc3;p=tahoe-lafs%2Ftahoe-lafs.git

setup: specify that the version file must go into src/allmydata/_version.py . fixes #1259
---

diff --git a/setup.py b/setup.py
index d352a1a4..0b35f73b 100644
--- a/setup.py
+++ b/setup.py
@@ -376,5 +376,6 @@ setup(name=APPNAME,
       setup_requires=setup_requires,
       entry_points = { 'console_scripts': [ 'tahoe = allmydata.scripts.runner:run' ] },
       zip_safe=False, # We prefer unzipped for easier access.
+      versionfiles=['src/allmydata/_version.py',],
       **setup_args
       )