-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 963 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 963 Bytes
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pytest-dataguard"
version = "1.0.3"
description = "Data validation and integrity testing for your datasets using pytest."
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "Ola Austine", email = "austineolanrewaju@gmail.com" }]
keywords = ["pytest", "plugin", "data", "quality", "csv", "polars"]
classifiers = [
"Framework :: Pytest",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"pip>=25.2",
"polars>=1.34.0",
"pre-commit>=4.3.0",
"pytest>=8.4.2",
]
[project.urls]
Homepage = "https://github.com/olaaustine/pytest_dataguard"
Issues = "https://github.com/olaaustine/pytest_dataguard/issues"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[project.entry-points.pytest11]
dataguard = "pytest_dataguard.options"