-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.44 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
[project]
name = "gsp"
version = "0.1.0"
description = ""
authors = [
{name = "Jerome Etienne",email = "jerome.etienne@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.13,<4.0"
dependencies = [
"numpy (>=2.3.4,<3.0.0)",
"matplotlib (>=3.10.7,<4.0.0)",
"pydantic (>=2.12.4,<3.0.0)",
"imageio (>=2.37.2,<3.0.0)",
"mypy (>=1.18.2,<2.0.0)",
"colorama (>=0.4.6,<0.5.0)",
"pytest (>=8.4.2,<9.0.0)",
"mpl3d @ git+https://github.com/rougier/matplotlib-3d",
"datoviz (>=0.3.2,<0.4.0)",
"http-constants (>=0.5.0,<0.6.0)",
"flask (>=3.1.2,<4.0.0)",
"requests-file (>=3.0.1,<4.0.0)",
"ruff (>=0.14.9,<0.15.0)",
"loguru (>=0.7.3,<0.8.0)",
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[dependency-groups]
dev = [
"scikit-image (>=0.25.2,<0.26.0)",
"mkdocs (>=1.6.1,<2.0.0)",
"mkdocs-material (>=9.7.0,<10.0.0)",
"mkdocstrings (>=1.0.0,<2.0.0)",
"mkdocstrings-python (>=2.0.1,<3.0.0)",
"pydoclint (>=0.8.3,<0.9.0)",
]
# Configuration for the Black code formatter
[tool.black]
line-length = 160 # to match the 79 character limit of PEP 8, but allow some extra space for longer lines
# # Configuration for Pydoclint - https://jsh9.github.io/pydoclint/
# [tool.pydoclint]
# style = 'numpy'
# check-style-mismatch = true
# allow-init-docstring = true
[tool.ruff]
lint.select = ["D"]
[tool.ruff.lint.pydocstyle]
convention = "google"