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