-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (26 loc) · 881 Bytes
/
pyproject.toml
File metadata and controls
33 lines (26 loc) · 881 Bytes
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
[project]
name = "dwarf2cpp"
version = "0.1.0"
description = "Generate C++ headers from DWARF Debugging Information Format"
readme = "README.md"
requires-python = ">=3.10"
dependencies = ["click", "jinja2", "lazy_loader", "tqdm"]
[project.scripts]
dwarf2cpp = "dwarf2cpp.cli:main"
[build-system]
requires = ["scikit-build-core-conan"]
build-backend = "scikit_build_core_conan.build"
[tool.scikit-build]
wheel.exclude = ["*.cpp"]
[[tool.scikit-build-core-conan.overrides]]
if.platform-system = "win32"
settings = ["compiler.cppstd=17", "compiler.version=193"]
[[tool.scikit-build-core-conan.overrides]]
if.platform-system = "linux"
settings = ["compiler.cppstd=17", "compiler.version=11"]
[[tool.scikit-build-core-conan.overrides]]
if.platform-system = "darwin"
settings = ["compiler.cppstd=17", "compiler.version=13"]
[tool.ruff]
line-length = 120
lint.extend-select = ["I"]