-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (65 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
75 lines (65 loc) · 1.77 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
[project]
name = "quack-diff"
version = "0.0.10"
description = "Regression testing tool for modern data warehouses, powered by duck-db"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Matteo Renoldi", email = "matteo.renoldi@gmail.com" }
]
requires-python = ">=3.12"
keywords = ["data", "diff", "duckdb", "snowflake", "regression-testing", "data-quality"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Database",
"Topic :: Software Development :: Testing",
]
dependencies = [
"duckdb>=1.0.0",
"typer[all]>=0.12.0",
"rich>=13.0.0",
"pydantic-settings>=2.0.0",
"pyyaml>=6.0.0",
]
[project.optional-dependencies]
snowflake = [
"snowflake-connector-python>=3.0.0",
"pyarrow>=14.0.0",
"pandas>=2.0.0",
]
[project.scripts]
quack-diff = "quack_diff.cli.main:app"
[project.urls]
Homepage = "https://github.com/matteorenoldi/quack-diff"
Repository = "https://github.com/matteorenoldi/quack-diff"
Issues = "https://github.com/matteorenoldi/quack-diff/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=8.0.0",
"coverage>=7.0.0",
"ruff>=0.5.0",
"zensical",
]
[tool.rumdl]
line-length = 200
[tool.rumdl.MD013]
line_length = 200
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"