From 028c1cf98c1af5130c2b23198a50f5c351a00295 Mon Sep 17 00:00:00 2001 From: regrain Date: Fri, 9 Jan 2004 14:32:54 +0000 Subject: [PATCH] * gdcmPython/gdcmVersion.py : add a gdcmVERSION variable information * setup.py : use a reference to gdcmVERSION -- BeNours --- ChangeLog | 4 ++++ gdcmPython/gdcmVersion.py | 2 ++ setup.py | 3 ++- 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 gdcmPython/gdcmVersion.py diff --git a/ChangeLog b/ChangeLog index 8c0b3acd..5e88ab4f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-01-09 Benoit Regrain + * gdcmPython/gdcmVersion.py : add a gdcmVERSION variable information + * setup.py : use a reference to gdcmVERSION + 2004-01-07 Benoit Regrain * Modification to compile with the distutils. * Bug fix in code diff --git a/gdcmPython/gdcmVersion.py b/gdcmPython/gdcmVersion.py new file mode 100644 index 00000000..f82cbc80 --- /dev/null +++ b/gdcmPython/gdcmVersion.py @@ -0,0 +1,2 @@ +gdcmVERSION="0.3.1" + diff --git a/setup.py b/setup.py index 66759c4e..669bd6fe 100644 --- a/setup.py +++ b/setup.py @@ -3,6 +3,7 @@ import glob, os, sys, shutil from distutilsWrapping import * from WrapSwig import * from WrapVTK import * +from gdcmPython.gdcmVersion import * ThisModule='gdcmPython' gdcmPythonSrcDir=ThisModule @@ -94,7 +95,7 @@ vtkLibraries=["vtkCommon","vtkCommonPython", ##### setup(name=ThisModule, - version="0.3", + version=gdcmVERSION, description="...", author="frog", author_email="frog@creatis.insa-lyon.fr", -- 2.45.1