2012-09-09 17:48:13 +02:00
|
|
|
#!/usr/bin/env python
|
2009-12-15 09:03:15 +01:00
|
|
|
|
2016-08-24 19:41:41 +02:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
with open('README.txt') as f:
|
|
|
|
readme = f.read()
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="cppcheck",
|
2017-06-04 22:51:48 +02:00
|
|
|
description='Python script to parse the XML (version 2) output of ' +
|
|
|
|
'cppcheck and generate an HTML report using Pygments for syntax ' +
|
|
|
|
'highlighting.',
|
2016-08-24 19:41:41 +02:00
|
|
|
long_description=readme,
|
|
|
|
author='Henrik Nilsson',
|
|
|
|
url='https://github.com/danmar/cppcheck',
|
|
|
|
license='GPL',
|
|
|
|
scripts=[
|
|
|
|
"cppcheck-htmlreport",
|
|
|
|
],
|
|
|
|
install_requires=['Pygments']
|
|
|
|
)
|