--- a/src/ldt/setup.py Thu May 03 18:30:04 2012 +0200
+++ b/src/ldt/setup.py Wed May 09 19:28:51 2012 +0200
@@ -4,6 +4,7 @@
from distutils.command.install import INSTALL_SCHEMES
import sys
+print("hello 1")
class osx_install_data(install_data):
# On MacOS, the platform-specific lib dir is /System/Library/Framework/Python/.../
@@ -17,6 +18,7 @@
# install_data class uses ('install_data', 'install_dir') instead.
self.set_undefined_options('install', ('install_lib', 'install_dir'))
install_data.finalize_options(self)
+print("hello 2")
def fullsplit(path, result=None):
"""
@@ -32,7 +34,7 @@
return result
return fullsplit(head, [tail] + result)
-
+print("hello 3")
def launch_setup(script_name, script_args):
if sys.platform == "darwin":
cmdclasses = {'install_data': osx_install_data}
@@ -118,8 +120,10 @@
if __name__ == "__main__":
-
+
+ print("hello 4")
script_name = os.path.basename(sys.argv[0])
script_args = sys.argv[1:]
-
- launch_setup(script_name, script_args)
\ No newline at end of file
+ print("hello 5")
+ launch_setup(script_name, script_args)
+ print("hello 6")
\ No newline at end of file