-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (55 loc) · 1.36 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
56
57
58
59
60
61
62
[tool.poetry]
name = "cpp-msgpack-rpc"
version = "0.0.0"
description = ""
authors = ["Kenta Kabashima <[email protected]>"]
readme = "README.md"
packages = []
package-mode = false
[tool.poetry.dependencies]
python = ">=3.12,<3.14"
# Some tools implicitly require setuptools.
setuptools = "^75.8.2"
[tool.poetry.group.doc.dependencies]
myst-parser = "^4.0.1"
sphinx = "^8.2.1"
sphinx-autobuild = "^2024.10.3"
sphinxcontrib-plantuml = "^0.30"
sphinx-orange-book-theme = "^0.15.0"
breathe = "^4.36.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.4"
pytest-approvaltests = "^0.2.4"
msgpack = "^1.1.0"
pytest-asyncio = "^0.25.3"
psutil = "^7.0.0"
pandas = "^2.2.3"
plotly = "^6.0.0"
kaleido = "==0.2.1"
statsmodels = "^0.14.4"
fastjsonschema = "^2.21.1"
pytomlpp = "^1.0.13"
[tool.poetry.group.dev.dependencies]
black = "^25.1.0"
click = "^8.1.8"
cmakelang = "^0.6.13"
doc8 = "^1.1.2"
pre-commit = "^4.1.0"
clang-tidy-checker = "^0.6.0"
lcov_cobertura = "^2.1.1"
tqdm = "^4.67.1"
lizard = "^1.17.20"
isort = "^6.0.1"
jsonschema2md = "^1.3.0"
pylint = "^3.3.4"
flake8 = "^7.1.2"
mypy = "^1.15.0"
pandas-stubs = "^2.2.3.241126"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.main]
disable = "too-many-instance-attributes,line-too-long,fixme"
load-plugins = "pylint.extensions.docparams"
[tool.isort]
profile = "black"