-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
78 lines (72 loc) · 1.57 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "mrQA"
dynamic = ["version"]
description = "rQA suite of tools offering automatic evaluation of protocol compliance"
readme = "README.rst"
license = "Apache-2.0"
requires-python = ">=3.8"
dependencies = [
"mrdataset",
"pydicom",
"nibabel",
"dictdiffer",
"jinja2>=3.0.3",
"protocol",
"bokeh",
"tqdm"
]
authors = [
{ name = "Pradeep Reddy Raamana", email = "[email protected]" },
{ name = "Harsh Sinha", email = "[email protected]" },
]
keywords = [
"protocol compliance, quality assurance",
]
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
]
[project.urls]
Homepage ='https://github.com/Open-Minds-Lab/mrQA'
Documentation = "https://open-minds-lab.github.io/mrQA/"
[project.scripts]
mrqa = "mrQA.cli:cli"
mrqa_monitor = "mrQA.monitor:cli"
mrqa_parallel = "mrQA.run_parallel:cli"
mrqa_subset = "mrQA.run_subset:cli"
[project.optional-dependencies]
test = [
"pytest~=7.1.2",
"hypothesis>=6.97.1",
"flake8",
"coverage",
"requests"
]
[tool.hatch.build]
include = [
"mrQA/*.py",
"mrQA/layout.html",
"mrQA/resources/*",
"mrQA/tests/*",
"mrQA/tests/resources/*",
]
exclude = [
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "mrQA/_version.py"
[tool.hatch.build.targets.sdist]
include = [
"mrQA/*.py",
"mQA/resources/*",
"mrQA/tests/*",
"mrQA/tests/resources/*",]
exclude = [
"/.github",
"/docs",
]
strict-naming = false