-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.03 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
[project]
name = "bronze-network-tests"
version = "0.1.0"
description = "Network connectivity validation for Bronze layer"
requires-python = ">=3.12"
dependencies = [
# Framework with base classes - using git URL until PyPI package is available
"pandas==2.1.4",
"numpy==1.26.4",
"psycopg2-binary==2.9.9",
"pyarrow==14.0.1",
"sqlalchemy-utils>=0.41.1",
"sqlmodel>=0.0.14",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-mock>=3.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["datakits"]
[tool.pytest.ini_options]
testpaths = ["datakits/*/tests", "tests"]
python_files = ["test_*.py", "*_test.py"]
addopts = "-v --tb=short"
[tool.coverage.run]
source = ["datakits"]
omit = ["*/tests/*", "*/__pycache__/*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if __name__ == .__main__.:",
"raise AssertionError",
"raise NotImplementedError",
]