Commit 0ae05ba4211852afdf692d903a84d9b22f6f7257

Authored by decalage2
1 parent 557803ae

setup: fixed XLMMacroDeobfuscator dependencies using PEP508 syntax, fixes #690

Showing 1 changed file with 4 additions and 4 deletions
setup.py
... ... @@ -333,10 +333,10 @@ def main():
333 333 'full': [
334 334 # For XLMMacroDeobfuscator, the release on PyPI is quite old compared
335 335 # to the github version, so for now we have to install from github:
336   - # 'https://github.com/DissectMalware/xlrd2/archive/master.zip',
337   - # 'https://github.com/DissectMalware/pyxlsb2/archive/master.zip',
338   - # 'https://github.com/DissectMalware/XLMMacroDeobfuscator/archive/master.zip',
339   - 'XLMMacroDeobfuscator',
  336 + 'xlrd2@https://github.com/DissectMalware/xlrd2/archive/master.zip',
  337 + 'pyxlsb2@https://github.com/DissectMalware/pyxlsb2/archive/master.zip',
  338 + 'XLMMacroDeobfuscator@https://github.com/DissectMalware/XLMMacroDeobfuscator/archive/master.zip',
  339 + # 'XLMMacroDeobfuscator',
340 340 ]
341 341 }
342 342 )
... ...