-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (45 loc) · 1.45 KB
/
pyproject.toml
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
52
53
54
55
[tool.poetry]
name = "cppcheck-codequality"
version = "0.0.0"
license = "MIT"
authors = ["Alex Hogen <[email protected]>"]
description = "Convert a CppCheck XML report to a GitLab-compatible Code Quality JSON report."
include = ["README.md", "CHANGELOG.md", "LICENSE"]
readme = "README.md"
homepage = "https://gitlab.com/ahogen/cppcheck-codequality"
repository = "https://gitlab.com/ahogen/cppcheck-codequality"
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Utilities",
]
[tool.poetry.urls]
"Bug Tracker" = "https://gitlab.com/ahogen/cppcheck-codequality/-/issues"
"Changelog" = "https://gitlab.com/ahogen/cppcheck-codequality/-/blob/main/CHANGELOG.md"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry.scripts]
cppcheck-codequality = 'cppcheck_codequality.__main__:main'
[tool.poetry.dependencies]
python = ">=3.7,<3.13"
xmltodict = "^0.13.0"
[tool.poetry.group.dev.dependencies]
isort = "^5.0"
black = "^22.0"
pylint = "^2.0"
[tool.poetry.group.test.dependencies]
pytest-cov = "^4.0"
pytest = "^7.0"
coverage = "^6.5"
[tool.poetry.group.multienv.dependencies]
tox = ">=3.24.0"
[tool.poetry.group.ci.dependencies]
anybadge = "^1.0.0"
pylint-exit = "^1.2.0"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
metadata = false