-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (37 loc) · 905 Bytes
/
pyproject.toml
File metadata and controls
54 lines (37 loc) · 905 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "igtools"
dynamic = ["version"]
description = "FHIR IG Tool"
authors = [{ name = "Ronald Martins", email = "ronald.martins@gematik.de" }]
license = { file = "LICENSE" }
dependencies = [
"beautifulsoup4==4.12.3",
"PyYAML==6.0.2",
"requests==2.32.3",
"packaging==25.0"
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0"
]
[project.scripts]
igtools = "igtools.main:main"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
igtools = ["mappings/*.yaml"]
[tool.setuptools.dynamic]
version = { attr = "igtools.versioning.__VERSION__" }
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-ra -q --tb=short"
testpaths = [
"tests"
]