-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 930 Bytes
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 930 Bytes
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
[project]
name = "grand-challenge-dicom-de-identifier"
description = "Python package to de-identify DICOM files using a pre-defined procedure"
version = "0.1.1"
authors = [
{name = "Chris van Run"},
]
license = {text = "Apache-2.0"}
requires-python = ">=3.10, <4.0"
dependencies = [
"pydicom>=2.4.0",
"grand-challenge-dicom-de-id-procedure",
]
readme = "README.md"
[project.urls]
repository = "https://github.com/DIAGNijmegen/rse-grand-challenge-dicom-de-identifier"
[dependency-groups]
dev = [
"pytest",
"mypy",
"types-pydicom",
"pre-commit",
]
[tool.mypy]
python_version = "3.10"
strict = true
show_error_codes = true
[tool.isort]
profile = "black"
known_first_party = ["grand_challenge_dicom_de_identifier", "tests"]
line_length = 79
[tool.black]
line-length = 79
target-version = ['py310']
[tool.pytest.ini_options]
testpaths = [
"tests",
]
python_files = "tests.py test_*.py *_tests.py"