-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (47 loc) · 1020 Bytes
/
pyproject.toml
File metadata and controls
55 lines (47 loc) · 1020 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
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["pipeline", "templates"]
[project]
name = "immunization-charts-python"
version = "0.3.0"
requires-python = ">=3.10"
dependencies = [
"pandas",
"PyYAML",
"openpyxl",
"pypdf",
"qrcode>=7.4.2",
"pillow>=12.2.0",
"babel>=2.17.0",
"rapidfuzz"
]
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
"pre-commit",
"ty>=0.0.29",
"git-changelog>=2.5.2",
"pypandoc>=1.15",
]
[project.scripts]
viper = "pipeline.orchestrator:main"
[tool.coverage.run]
source = ["pipeline"]
omit = ["*/__pycache__/*", "*/site-packages/*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
"= time\\.time\\(\\)",
]
[tool.coverage.html]
directory = "htmlcov"
[tool.coverage.json]
output = "coverage.json"