-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
51 lines (44 loc) · 1.18 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
51
[project]
name = "cpp-stat-bench"
version = "0.0.0"
description = ""
readme = "README.md"
authors = []
requires-python = ">=3.12,<3.14"
dependencies = ["setuptools (>=82.0.0,<83.0.0)"]
[tool.poetry]
packages = [{ include = "scripts" }]
[tool.poetry.group.test.dependencies]
pytest = "^9.0.2"
pytest-approvaltests = "^0.2.4"
fastjsonschema = "^2.21.2"
msgpack = "^1.1.2"
[tool.poetry.group.doc.dependencies]
sphinx = "^9.1.0"
sphinx-orange-book-theme = "^0.19.0"
sphinxcontrib-plantuml = "^0.31"
breathe = "^4.36.0"
myst-parser = "^5.0.0"
sphinx-togglebutton = "^0.4.4"
[tool.poetry.group.dev.dependencies]
black = "^26.1.0"
cmakelang = "^0.6.13"
doc8 = "^2.0.0"
pre-commit = "^4.5.1"
sphinx-autobuild = "^2025.8.25"
clang-tidy-checker = "^0.6.0"
lcov-cobertura = "^2.1.1"
jsonschema2md = "^1.7.0"
click = "^8.3.1"
isort = "^7.0.0"
pylint = "^4.0.4"
flake8 = "^7.3.0"
mypy = "^1.19.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.main]
disable = "too-many-instance-attributes,line-too-long,fixme,too-few-public-methods,redefined-outer-name,redefined-builtin,too-many-arguments"
load-plugins = "pylint.extensions.docparams"
[tool.isort]
profile = "black"