mirror of
https://github.com/rizsotto/scan-build.git
synced 2025-12-16 12:00:08 +01:00
37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='beye',
|
|
version='0.1',
|
|
author='László Nagy',
|
|
author_email='rizsotto@gmail.com',
|
|
keywords=['clang', 'scan-build', 'analyzer', 'static analyzer'],
|
|
url='https://github.com/rizsotto/Beye',
|
|
license='LICENSE.txt',
|
|
description='static code analyzer wrapper for Clang.',
|
|
long_description=open('README.rst').read(),
|
|
zip_safe=False,
|
|
packages=find_packages(),
|
|
entry_points={
|
|
'console_scripts': [
|
|
'beye = analyzer.beye:run'
|
|
]
|
|
},
|
|
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="tests.suite"
|
|
)
|