Files
scan-build-mirror/setup.py
2013-10-13 01:16:11 +02:00

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()
)