summaryrefslogtreecommitdiff
path: root/weave/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'weave/setup.py')
-rwxr-xr-xweave/setup.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/weave/setup.py b/weave/setup.py
index 56d54f84c..fcd88d65a 100755
--- a/weave/setup.py
+++ b/weave/setup.py
@@ -4,9 +4,7 @@ from scipy_distutils.core import setup
from scipy_distutils.misc_util import get_path, merge_config_dicts
from scipy_distutils.misc_util import package_config
-# Enough changes to bump the number. We need a global method for
-# versioning
-version = "0.3.0"
+from weave_version import weave_version
def stand_alone_package(with_dependencies = 0):
path = get_path(__name__)
@@ -22,7 +20,7 @@ def stand_alone_package(with_dependencies = 0):
print 'dep:', dependencies
config_dict = package_config(primary,dependencies)
config_dict['name'] = 'weave'
- setup (version = version,
+ setup (version = weave_version,
description = "Tools for inlining C/C++ in Python",
author = "Eric Jones",
author_email = "eric@enthought.com",