-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (70 loc) · 1.87 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (70 loc) · 1.87 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[project]
name = "numerical-collection-cpp"
version = "0.0.0"
description = ""
readme = "README.md"
requires-python = ">=3.13,<3.14"
authors = [
{ name = "Kenta Kabashima", email = "kenta_program37@hotmail.co.jp" },
]
dependencies = ["setuptools (>=82.0.1)"]
[tool.poetry]
packages = [
{ include = "num_collect_test_utils", from = "scripts" },
{ include = "num_collect_docs_utils", from = "scripts" },
{ include = "num_collect_colors", from = "scripts" },
]
[tool.poetry.group.test.dependencies]
kaleido = "^1.3.0"
pandas = "^3.0.3"
plotly = "^6.7.0"
pytest = "^9.0.3"
pytest-approvaltests = "^0.2.4"
fastjsonschema = "^2.21.2"
pytomlpp = "^1.1.0"
msgpack = "^1.1.2"
playwright = "^1.60.0"
click = "^8.4.1"
mpmath = "^1.4.1"
[tool.poetry.group.doc.dependencies]
sphinx = "^9.1.0"
sphinx-orange-book-theme = "^0.19.0"
myst-parser = "^5.1.0"
sphinxcontrib-plantuml = "^0.31"
sphinxcontrib-bibtex = "^2.7.0"
jupyterlab = "^4.5.7"
ipywidgets = "^8.1.8"
ipython = "^9.13.0"
ipykernel = "^7.2.0"
myst-nb = "^1.4.0"
ms37-designs = { git = "https://gitlab.com/MusicScience37Projects/utility-libraries/ms37-designs.git", rev = "f1f39517a2de68e48dc5e96caa7012c24cec0f8c" }
[tool.poetry.group.dev.dependencies]
black = "^26.5.1"
cmakelang = "^0.6.13"
doc8 = "^2.0.0"
pre-commit = "^4.6.0"
sphinx-autobuild = "^2025.8.25"
tqdm = "^4.67.3"
lizard = "^1.22.1"
lcov-cobertura = "^2.1.1"
clang-tidy-checker = "^0.6.0"
isort = "^8.0.1"
jsonschema2md = "^1.7.0"
pylint = "^4.0.5"
flake8 = "^7.3.0"
mypy = "^2.1.0"
pandas-stubs = "^3.0.0.260204"
types-tqdm = "^4.67.3.20260518"
pyyaml = "^6.0.3"
types-pyyaml = "^6.0.12.20260518"
colour-science = "^0.4.7"
networkx = "^3.6.1"
scipy = "^1.17.1"
scipy-stubs = "^1.17.1.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.pylint]
disable = ["R0801", "C0413", "C0411", "W0404", "C0412", "C0114"]