-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
64 lines (57 loc) · 1.98 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
63
[tool.poetry]
name = "microscopemetrics-omero"
version = "0.2.0"
description = "A package to compute metrics on OMERO images using micrsocope-metrics"
authors = [
"Julio Mateos Langerak <[email protected]>"
]
license = "GPL-3.0-only"
readme = "README.md"
keywords = ["microscopy", "metrology"]
[tool.pytest.ini_options]
#addopts = "--cov"
testpaths = [
"tests"
]
filterwarnings = [
# action, message, category, module, lineno
"default::DeprecationWarning:__main__",
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning",
"ignore::ImportWarning",
"ignore::ResourceWarning",
# 'ignore::DeprecationWarning:omero.*:',
# 'ignore::DeprecationWarning:omero_ext.*:',
# 'ignore::DeprecationWarning:Ice.*:',
# 'ignore::DeprecationWarning:Ice_Current_ice.*:',
# 'ignore::DeprecationWarning:Ice_Properties_ice.*:',
# 'ignore::DeprecationWarning:omero_Scripts_ice.*:',
# 'ignore::DeprecationWarning:cli.*:',
# 'ignore::DeprecationWarning:omero_ServerErrors_ice.*:',
# 'ignore::DeprecationWarning:omero_cmd_Mail_ice.*:',
# 'ignore::DeprecationWarning:omero_API_ice.*:',
# 'ignore::DeprecationWarning:omero_Tables_ice.*:',
# 'ignore::DeprecationWarning:omero_api_*.*:',
# 'ignore::DeprecationWarning:omero/plugins/import.*:',
# 'ignore:.*invalid escape sequence:DeprecationWarning',
# 'ignore:.*the imp module is deprecated in favour of importlib:DeprecationWarning',
]
[tool.poetry.dependencies]
python = ">=3.8 <=3.11"
#microscopemetrics = "0.2.2"
microscopemetrics = {git = "https://github.com/juliomateoslangerak/microscope-metrics.git", branch = "main"}
omero-py = "^5"
pyyaml = "^6"
[tool.poetry.group.test.dependencies]
pytest = "^6"
#pytest-cov = "^4.0.0" # pytest-cov seems it have issues with pycharm debugging
tox = "^3"
ezomero = "^1"
[tool.poetry.group.dev.dependencies]
black = "^23"
pre-commit = "3.5"
poetry = "^1"
isort = "^5"
[build-system]
requires = ["poetry-core=1.7.0"]
build-backend = "poetry.core.masonry.api"