static-analysis-engineering / CodeHawk-Binary

CodeHawk Binary Analyzer for malware analysis and general reverse engineering
MIT License
21 stars 9 forks source link

Add minimal setup.py file to make chb pip installable #157

Closed waskyo closed 1 month ago

waskyo commented 1 month ago

With this in place, we can do:

pip install -e chb@git+https://github.com/static-analysis-engineering/CodeHawk-Binary.git

instead of having to mess with $PYTHONPATH.

The -e installs it in editable mode so pip will download new versions as they become available (at least in theory!).