diff --git a/htmlreport/setup.py b/htmlreport/setup.py new file mode 100755 index 000000000..855554988 --- /dev/null +++ b/htmlreport/setup.py @@ -0,0 +1,10 @@ +#!/usr/bin/python +from distutils.core import setup + +if __name__ == '__main__': + setup( + name="cppcheck", + scripts=[ + "cppcheck-htmlreport", + ] + )