-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
115 lines (104 loc) · 2.12 KB
/
pyproject.toml
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "Validoopsie"
version = "1.2.0"
description = "validoopsie is a simple and light data validation library."
readme = "README.md"
authors = [
{ name = "Akmal Soliev" }
]
keyword = ["python", "data", "validation", "data validation"]
requires-python = ">=3.9"
dependencies = [
"loguru>=0.7.3",
"narwhals>=1.24.0",
"pyarrow>=11.0.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/akmalsoliev/Validoopsie"
Issues = "https://github.com/akmalsoliev/Validoopsie/issues"
[tool.hatch.build]
include = [
"validoopsie",
"README.md",
"LICENSE",
]
[tool.uv]
dev-dependencies = [
"ruff>=0.2.2",
"pytest>=8.3.3",
"polars>=1.16.0",
"pre-commit>=2.15.0",
"pandas>=2.2.3",
"flake8-pyi>=24.9.0",
"twine>=6.0.1",
"pyarrow>=18.1.0",
"modin[all]>=0.32.0",
"pendulum>=3.0.0",
"pyspark>=3.5.4",
"marimo>=0.10.17",
"duckdb>=1.1.3",
]
[dependency-groups]
docs = [
"markdown-exec>=1.10.0",
"mkdocs-awesome-pages-plugin>=2.10.1",
"mkdocs-material[imaging]>=9.5.50",
"mkdocstrings[python]>=0.18",
]
[tool.ruff]
line-length = 90
fix = true
target-version = "py39"
lint.select = [
"ALL",
]
lint.ignore = [
"ANN002",
"ANN003",
"B023",
"BLE001",
"D100",
"D101",
"D103",
"D104",
"D105",
"D107",
"D203",
"D213",
"D401",
"E712",
"F401",
"FA100",
"FIX002",
"INP001",
"N802",
"N818",
"N999", # The have capitilized validations (directory names) this needs to be implemented
"PLR2004",
"PTH118",
"PTH123",
"PYI021",
"S101",
"TC002",
"TC003",
"TD003",
"UP007",
"FBT003", # Added for min max check where needed `nw.lit(True)` and `nw.lit(False)`
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.mypy]
strict = true
disable_error_code = ["union-attr"]