-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
37 lines (32 loc) · 970 Bytes
/
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
[tool.poetry]
name = "pyorthanc"
version = "1.18.0"
description = "Orthanc REST API python wrapper with additional utilities"
authors = [
"Gabriel Couture <[email protected]>",
"Yannick Lemaréchal <[email protected]>",
]
license = "MIT"
readme = 'README.md'
homepage = "https://gacou54.github.io/pyorthanc/"
repository = "https://github.com/gacou54/pyorthanc"
keywords = ["Orthanc", "DICOM", "Medical-Imaging"]
[tool.poetry.dependencies]
python = "^3.8"
httpx = ">=0.24.1,<1.0.0"
pydicom = "^2.3.0"
tqdm = { version = "^4.66.1", optional = true }
[tool.poetry.extras]
progress = ["tqdm"]
all = ["tqdm"]
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
mkdocstrings = { extras = ["python"], version = "^0.23.0" }
mkdocs-material = "^9.4.6"
jinja2 = "^3.1.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
simple-openapi-client = "^0.5.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"