-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
50 lines (42 loc) · 1.09 KB
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "log2compdb"
dynamic = ["version"]
description = "Generate compile_commands.json from a build log with compiler invocations"
authors = [
{ name = "Qyriad", email = "qyriad@qyriad.me" },
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = [
"build-tool",
"build-system",
"compilation-database",
]
requires-python = ">=3.8"
[project.urls]
homepage = "https://codeberg.org/Qyriad/log2compdb"
repository = "https://codeberg.org/Qyriad/log2compdb"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
]
[project.scripts]
log2compdb = "log2compdb:main"
[tool.setuptools.dynamic.version]
attr = "log2compdb.__version__"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
pythonpath = "."
[tool.pyright]
# typing.* aliases are used for compatability with Python 3.10.
deprecateTypingAliases = false
reportUnusedCallResult = false
# Not *everything* needs to be perfectly type checked.
reportAny = false
reportUnknownVariableType = false
reportMissingTypeArgument = false