The script uses distutils to install the script into /usr/bin/. The following will install the script: sudo ./setup.py install
11 lines
192 B
Python
Executable File
11 lines
192 B
Python
Executable File
#!/usr/bin/python
|
|
from distutils.core import setup
|
|
|
|
if __name__ == '__main__':
|
|
setup(
|
|
name="cppcheck",
|
|
scripts=[
|
|
"cppcheck-htmlreport",
|
|
]
|
|
)
|