comparison setup.py @ 539:4e8be9c52952

Correct data location in setup.py
author Stefano Rivera <stefano@rivera.za.net>
date Sun, 10 Apr 2011 00:35:25 +0200
parents f0c108bee0b2
children 067d3d80ff2e
comparison
equal deleted inserted replaced
538:c1b0ad1c0932 539:4e8be9c52952
111 if name[0] == '.': continue 111 if name[0] == '.': continue
112 filename = os.path.join(dirpath, name) 112 filename = os.path.join(dirpath, name)
113 dest.append(filename) 113 dest.append(filename)
114 114
115 # define what is our data 115 # define what is our data
116 _DATA_DIR = os.path.join('skaapsteker', 'data') 116 _DATA_DIR = 'data'
117 data = [] 117 data = []
118 add_files(data,os.walk(_DATA_DIR)) 118 add_files(data,os.walk(_DATA_DIR))
119 119
120 120
121 121