update with comments on PR #450, fixed styles and updated CHANGES and CONTRIBUTORS

This commit is contained in:
phunterlau
2015-08-20 10:10:34 -07:00
parent 70e230815b
commit db444c4a08
4 changed files with 18 additions and 12 deletions

View File

@@ -40,7 +40,8 @@ def find_lib_path():
"""
curr_path = os.path.dirname(os.path.abspath(os.path.expanduser(__file__)))
#make pythonpack hack: copy this directory one level upper for setup.py
dll_path = [curr_path, os.path.join(curr_path, '../../wrapper/'),os.path.join(curr_path, './wrapper/')]
dll_path = [curr_path, os.path.join(curr_path, '../../wrapper/')
, os.path.join(curr_path, './wrapper/')]
if os.name == 'nt':
if platform.architecture()[0] == '64bit':
dll_path.append(os.path.join(curr_path, '../../windows/x64/Release/'))