mirror of
https://github.com/rizsotto/scan-build.git
synced 2025-12-16 12:00:08 +01:00
19 lines
510 B
Python
19 lines
510 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='beye',
|
|
version='0.1',
|
|
author='László Nagy',
|
|
author_email='rizsotto@gmail.com',
|
|
keywords=['clang', 'scan-build', 'checker', 'analyzer', 'static analyzer'],
|
|
scripts=['bin/beye', 'bin/analyze'],
|
|
packages=['beye'],
|
|
url='https://github.com/rizsotto/Beye',
|
|
license='LICENSE.txt',
|
|
description='static code analyzer wrapper for Clang.',
|
|
long_description=open('README.txt').read()
|
|
)
|