cppcheck/htmlreport/setup.py
Henrik Nilsson f1ad308f5f Added a installation script for the cppcheck-htmlreport utility.
The script uses distutils to install the script into /usr/bin/.
The following will install the script:
   sudo ./setup.py install
2009-12-15 09:03:15 +01:00

11 lines
192 B
Python
Executable File

#!/usr/bin/python
from distutils.core import setup
if __name__ == '__main__':
setup(
name="cppcheck",
scripts=[
"cppcheck-htmlreport",
]
)