Files
scan-build-mirror/setup.py
2014-06-16 17:37:26 +02:00

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