-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
40 lines (39 loc) · 1.38 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
from setuptools import setup
setup(
name="cppcheck-junit",
version="2.4.0",
description="Converts Cppcheck XML output to JUnit format.",
long_description=open("README.rst").read(),
keywords="Cppcheck C++ JUnit",
author="John Hagen",
author_email="johnthagen@gmail.com",
url="https://github.com/johnthagen/cppcheck-junit",
py_modules=["cppcheck_junit"],
install_requires=open("requirements.txt").readlines(),
python_requires=">=3.8",
zip_safe=False,
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: C++",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Quality Assurance",
],
scripts=["cppcheck_junit.py"],
entry_points={
"console_scripts": [
"cppcheck_junit = cppcheck_junit:main",
],
},
)