-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
63 lines (56 loc) · 1.47 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
[project]
name = "abstract-validation-base"
version = "0.4.0"
description = "Validation and process tracking for data transformation pipelines"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "jreakin", email = "johnreakin@gmail.com" }
]
keywords = ["validation", "pydantic", "audit", "data-quality", "transformation-tracking"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
requires-python = ">=3.12.8"
dependencies = [
"pydantic>=2.12.5",
"rich>=14.2.0",
"sqlmodel>=0.0.27",
]
[project.optional-dependencies]
whylogs = [
"pandas>=2.3.3",
"whylogs>=1.3.0",
]
all = ["whylogs>=1.3.0"]
[build-system]
requires = ["uv_build>=0.9.17,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"hypothesis>=6.0.0",
"mypy>=1.19.0",
"pre-commit>=4.5.0",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"ruff>=0.14.9",
]
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "TCH"]
[tool.mypy]
python_version = "3.10"
strict = true
plugins = ["pydantic.mypy"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --cov=abstract_validation_base --cov-report=term-missing"