-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (84 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
94 lines (84 loc) · 1.84 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
86
87
88
89
90
91
92
93
94
[tool.poetry]
name = "focus_validator"
version = "2.1.0"
description = "FOCUS spec validator."
authors = []
readme = "README.md"
packages = [{ include = "focus_validator" }]
include = [
]
exclude = [
]
[tool.poetry.build]
generate-setup-file = false
script = "build.py"
[tool.poetry.dependencies]
python = "^3.12"
pandas = "^2"
tabulate = "*"
pyarrow = "*"
pydantic = "^2.12"
pyyaml = "^6.0.3"
requests = "*"
pandera = { version = "^0.26.1" }
multimethod = ">=2.0,<2.1"
sqlglot = "^27.28.1"
numpy = { version = "^1.26"}
pytz = "^2025.2"
pandasql = "^0.7.3"
polars = "^1.34.0"
ddt = "^1.7.1"
duckdb = "^1.4.1"
graphviz = "^0.21"
[tool.poetry.group.dev.dependencies]
black = { extras = ["d"], version = "^25.9.0" }
polyfactory = "^2.22.3"
pytest = "^8.4.2"
pytest-cov = "^7.0.0"
mypy = "^1.18.2"
types-setuptools = "^80.9.0"
types-tabulate = "^0.9.0.3"
pandas-stubs = "^2.3.2"
types-pyyaml = "^6.0.12.11"
types-requests = "^2.31.0.2"
pandera = { version = "^0.26.1", extras = ["mypy"] }
isort = "^7.0.0"
flake8 = "^7.3.0"
pre-commit = "^4.3.0"
bump2version = "^1.0.1"
types-psutil = "^7.0.0.20251001"
[build-system]
requires = ["poetry-core", "pyyaml"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
focus-validator = "focus_validator.main:main"
[tool.coverage.run]
source = ["focus_validator"]
omit = [
"*/tests/*",
"*/test_*",
"*/__pycache__/*",
"*/venv/*",
"*/.venv/*",
"*/build/*",
"*/dist/*"
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if self\\.debug",
"raise AssertionError",
"raise NotImplementedError",
"if 0:",
"if __name__ == .__main__.:",
"@(abc\\.)?abstractmethod"
]
precision = 1
show_missing = true
skip_covered = false
[tool.coverage.html]
directory = "htmlcov"
title = "Focus Validator Coverage Report"
[tool.coverage.xml]
output = "coverage.xml"