-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (41 loc) · 1.25 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
[tool.poetry]
name = "hrm-omero"
version = "1.0.0-dev0"
authors = [
"Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch>",
"Felix Meyenhofer <felix.meyenhofer@unifr.ch>",
]
description = "A connector between the Huygens Remote Manager (HRM) and OMERO."
license = "GPLv3"
readme = "README.md"
homepage = "https://pypi.org/project/hrm-omero/"
repository = "https://github.com/imcf/hrm-omero"
documentation = "https://imcf.one/apidocs/hrm-omero/hrm_omero.html"
keywords = ["hrm", "huygens", "omero", "openmicroscopy", "ome", "deconvolution"]
[tool.poetry.dependencies]
python = "^3.6.2"
omero-py = "^5.9.0"
loguru = "^0.5.3"
beautifulsoup4 = "^4.10.0"
Pillow = "^8.3.2"
[tool.poetry.dev-dependencies]
pytest = "^6.0"
# pdoc = "^7.4.0"
black = "^21.9b0"
pylint = "^2.11.0"
pytest-cov = "^2.12.1"
pylint-pytest = "^1.1.2"
requests-cache = "^0.7.5"
[tool.poetry.scripts]
ome-hrm = "hrm_omero.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-rs -vv --cov=hrm_omero --cov-report html"
markers = [
"online: enables tests requiring connection to a real OMERO instance",
]
filterwarnings = [
"ignore:the imp module is deprecated in favour of importlib:DeprecationWarning",
]