mirror of
https://github.com/rizsotto/scan-build.git
synced 2025-12-21 12:19:29 +01:00
32 lines
1.1 KiB
Python
32 lines
1.1 KiB
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', 'analyzer', 'static analyzer'],
|
|
scripts=['bin/beye', 'bin/analyzer.py', 'bin/ccc-analyzer', 'bin/c++-analyzer'],
|
|
url='https://github.com/rizsotto/Beye',
|
|
license='LICENSE.txt',
|
|
description='static code analyzer wrapper for Clang.',
|
|
long_description=open('README.rst').read(),
|
|
classifiers=[
|
|
"Development Status :: 4 - Beta",
|
|
"License :: OSI Approved :: University of Illinois/NCSA Open Source License",
|
|
"Environment :: Console",
|
|
"Operating System :: POSIX",
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: C",
|
|
"Programming Language :: C++",
|
|
"Programming Language :: Objective C",
|
|
"Topic :: Software Development :: Compilers",
|
|
"Topic :: Software Development :: Quality Assurance"
|
|
],
|
|
test_suite="nose.collector",
|
|
tests_require="nose"
|
|
)
|