-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
47 lines (38 loc) · 930 Bytes
/
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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pytest-cmake-presets"
version = "0.0.0.dev0"
repository = "https://github.com/ixm-one/pytest-cmake-presets"
description = "Execute CMake Presets via pytest"
authors = ["Izzy Muerte"]
readme = "README.md"
license = "MIT"
packages = [{include = "cmake_presets", from = "src"}]
[tool.ruff]
line-length = 100
src = ["src", "tests"]
[tool.black]
line-length = 100
[tool.isort]
line_length = 100
from_first = true
src_paths = ["src"]
profile = "black"
[tool.pyright]
pythonPlatform = "All"
[tool.poetry.plugins.pytest11]
cmake-presets = "cmake_presets"
[tool.poetry.dependencies]
python = "^3.12"
pytest = "^8.0.0"
dataclasses-json = "^0.6.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pyright = "^1.1.285"
ruff = "^0.8.0"
pytest-xdist = "^3.1.0"
pytest-cov = "^6.0.0"
ninja = "^1.11.1"