-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
51 lines (47 loc) · 1.99 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name='scan-build',
version='2.0.20',
author='László Nagy',
author_email='rizsotto@gmail.com',
keywords=['Clang', 'scan-build', 'static analyzer'],
url='https://github.com/rizsotto/scan-build',
license='LICENSE.txt',
description='static code analyzer wrapper for Clang.',
long_description=long_description,
long_description_content_type="text/x-rst",
zip_safe=False,
python_requires=">=3.6",
packages=['libscanbuild', 'libear'],
package_data={'libscanbuild': ['resources/*'],
'libear': ['config.h.in', 'ear.c']},
entry_points={
'console_scripts': [
'scan-build = libscanbuild.analyze:scan_build',
'analyze-build = libscanbuild.analyze:analyze_build',
'analyze-cc = libscanbuild.analyze:analyze_compiler_wrapper',
'analyze-c++ = libscanbuild.analyze:analyze_compiler_wrapper',
'intercept-build = libscanbuild.intercept:intercept_build',
'intercept-cc = libscanbuild.intercept:intercept_compiler_wrapper',
'intercept-c++ = libscanbuild.intercept:intercept_compiler_wrapper'
]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: University of Illinois/NCSA Open Source License",
"Environment :: Console", "Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Intended Audience :: Developers", "Programming Language :: C",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Quality Assurance"
]
)