-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
93 lines (80 loc) · 2.68 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[tool.poetry]
name = "tdwii_plus_examples"
version = "0.2.0"
description = "Working sample code for implementing some tdw-ii transactions and some extensions such as UPSWatch and UPSWEvent based subscriptions for activities of interest in a treatment room"
authors = ["Stuart Swerdloff <[email protected]>"]
license = "Apache 2.0"
readme = "README.md"
packages = [{include = "tdwii_plus_examples"}]
[tool.poetry.dependencies]
python = ">=3.10, <3.13"
pydicom = "^2.4.0"
pynetdicom = "^2.1.0"
pyside6 = "^6.6.0"
sqlalchemy = { version = "^2.0"}
tomlkit = "*"
toml = "*"
tomli = "*"
# ----- #
# Tests #
# ----- #
pytest = { version = "*", optional = true } # groups = ["all", "tests"]
pytest-sugar = { version = "*", optional = true } # groups = ["all", "tests"]
# hypothesis = { version = "<6", optional = true } # groups = ["all", "tests"]
# astroid = { version = "*", optional = true } # groups = ["all", "tests"]
# psutil = { version = "*", optional = true } # groups = ["all", "tests"]
pylint = { version = "*", optional = true } # groups = ["all", "tests"]
pytest-rerunfailures = { version = "*", optional = true } # groups = ["all", "tests"]
# ---------------- #
# Development Only #
# ---------------- #
pre-commit = { version = "*", optional = true } # groups = ["dev", "all"]
black = { version = "^24.3.0", optional = true } # groups = ["dev", "all"]
flake8 = { version = "*", optional = true } # groups = ["dev", "tests", "all"]
dill = { version = "*", optional = true } # groups = ["dev", "tests", "all"]
mypy = { version = "*", optional = true } # groups = ["dev", "all"]
rope = { version = "*", optional = true } # groups = ["dev", "all"]
doc8 = { version = "*", optional = true } # groups = ["dev", "all"]
# readme-renderer = { version = "*", optional = true } # groups = ["dev", "all"]
# tabulate = { version = "*", optional = true } # groups = ["dev", "all", "doctests"]
# pyoxidizer = { version = "*", optional = true } # groups = ["dev", "all", "build"]
[tool.poetry.extras]
tests = [
"pylint",
"pytest",
"pytest-rerunfailures",
"pytest-sugar",
"toml",
"flake8",
"dill",
]
dev = [
"pre-commit",
"black",
"mypy",
"rope",
"doc8",
"toml",
"flake8",
"dill",
]
all = [
"pylint",
"pytest",
"pytest-rerunfailures",
"pytest-sugar",
"pre-commit",
"black",
"mypy",
"rope",
"doc8",
"toml",
"tomlkit",
"flake8",
"dill",
]
[tool.poetry.group.dev.dependencies]
parameterized = "^0.9.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"