Changeset 845 for trunk/python/setup.py

Show
Ignore:
Timestamp:
08/18/08 23:46:40 (5 months ago)
Author:
hobu
Message:

no longer worry about embedding version number in the DLL

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/python/setup.py

    r836 r845  
    1010import os 
    1111 
    12 opt = file('../nmake.opt','rb') 
    13 for line in opt: 
    14     line = line.strip() 
    15     if line.startswith('PACKAGE_VERSION'): 
    16          
    17         version = line.split('=')[1] 
     12version = '1.0.0b2' 
    1813 
    1914if os.name == 'nt': 
    2015    # Windows NT library 
    21     lib_name = 'liblas%s.dll' % version 
     16    lib_name = 'liblas.dll'  
    2217    data_files=[('dll', ['dll/%s'% lib_name, 'dll/geotiff.dll','dll/libtiff.dll']),] 
    2318else: