-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (78 loc) · 2.01 KB
/
pyproject.toml
File metadata and controls
85 lines (78 loc) · 2.01 KB
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
[tool.poetry]
name = "collibra-data-catalog-plugin"
version = "0.1.0"
description = "Witboost Data Catalog Plugin for Collibra"
authors = ["Agile Lab"]
readme = "README.md"
packages = [{include = "src"}]
[tool.poetry.dependencies]
python = "~3.11"
fastapi = {extras = ["all"], version = ">=0.115.8"}
starlette = ">=0.49.1"
pyyaml = "^6.0"
types-pyyaml = "^6.0"
loguru = "^0.7.3"
httpx = "^0.27.0"
jsonpath-ng = "^1.6.0"
pydantic-settings = "^2.2.0"
opentelemetry-distro = ">=0.45b0"
opentelemetry-instrumentation-fastapi = ">=0.45b0"
opentelemetry-exporter-otlp-proto-grpc = ">=1.24.0"
opentelemetry-exporter-otlp = ">=1.24.0"
protobuf = ">=5.29.6"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.1"
pytest-asyncio = "^0.23.7"
pytest-cov = "^5.0.0"
pytest-mock = "^3.14.0"
mypy = "^1.1.1"
ruff = "^0.4.5"
pre-commit = "^3.1.1"
pip-audit = "^2.5.3"
respx = "^0.21.1"
[tool.ruff]
select = ["E", "F", "I"]
line-length = 120
[tool.pytest.ini_options]
addopts = "-v"
asyncio_mode = "auto"
[tool.coverage.report]
fail_under = 90
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.liccheck]
authorized_licenses = [
'apache license 2.0',
'apache-2.0',
'apache software',
'bsd',
'cc0 1.0 universal (cc0 1.0) public domain dedication',
'gnu lesser general public license v2 or later (lgplv2+)',
'isc',
'isc license (iscl)',
'mit',
'mozilla public license 2.0 (mpl 2.0)',
'other/proprietary',
'python software foundation',
'the unlicense (unlicense)',
'3-clause bsd',
'mit',
'MIT License',
'mozilla public license 2.0 (mpl 2.0)',
'other/proprietary',
'python software foundation',
'the unlicense (unlicense)',
'3-clause bsd',
'BSD-2-Clause',
'GNU Library or Lesser General Public License (LGPL)',
'Apache 2.0',
'MIT AND Python-2.0',
'GNU General Public License (GPL)',
'Collate Community License Agreement',
"BSD-3-Clause",
"PSF-2.0"
]
unauthorized_licenses = [
"gnu general public license v2 (gplv2)"
]