-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (46 loc) Β· 1.55 KB
/
pyproject.toml
File metadata and controls
56 lines (46 loc) Β· 1.55 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
[tool.poetry]
authors = [
"Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch>",
"Laurent Guerard <laurent.guerard@unibas.ch>",
"Kai Schleicher <kai.schleicher@unibas.ch>",
"Rohan Girish <r.rohangirish@unibas.ch>",
]
description = "Mostly ImageJ/Fiji-related Python helper functions."
documentation = "https://imcf.one/apidocs/imcflibs/imcflibs.html"
license = "GPL-3.0-or-later"
name = "imcflibs"
readme = "README.md"
repository = "https://github.com/imcf/python-imcflibs"
version = "0.0.0"
# NOTE: to create an environment using 'poetry install' or similar operations,
# the following modifications are temporarily necessary (can / should be
# reverted after creating the env):
# - either: python = ">=3.9" AND disable ipython in the dev dependencies
# - or: python = ">=3.10"
[tool.poetry.dependencies]
imcf-fiji-mocks = ">=0.10.0"
python = ">=2.7"
python-micrometa = "^15.2.2"
sjlogging = ">=0.5.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.1"
pytest-cov = "^6.0.0"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.ruff.lint]
exclude = [
"tests/interactive-imagej/*"
]
select = [
"D", # enable "pydocstyle" rules
"D212", # summary lines must be on the first physical line of the docstring
"D401", # imperative mood for all docstrings
"D415", # summary line has to end in a punctuation mark
"D417", # require documentation for *all* function parameters
]
ignore = [
"D202", # no blank lines allowed after function docstring
]
[tool.ruff.lint.pydocstyle]
convention = "numpy"