-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
83 lines (77 loc) · 1.54 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cuallee"
version = "0.15.1"
authors = [
{ name="Herminio Vazquez", email="canimus@gmail.com"},
{ name="Virginie Grosboillot", email="vestalisvirginis@gmail.com" }
]
license = {file = "LICENSE"}
description = "Python library for data validation on DataFrame APIs including Snowflake/Snowpark, Apache/PySpark and Pandas/DataFrame."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"toolz >= 0.12.1",
"requests>=2.28",
]
[project.optional-dependencies]
dev = [
"black==24.10.0",
"ruff==0.8.0",
"pre-commit==4.0.1",
]
pyspark = [
"pyspark>=3.4.0"
]
pyspark_connect = [
"pyspark[connect]"
]
snowpark = [
"snowflake-snowpark-python==1.11.1",
"pyarrow >= 14.0.2"
]
pandas = [
"pandas>=2.0.1"
]
bigquery =[
"google-cloud-bigquery>=3.10.0",
"pyarrow >= 11.0.0"
]
duckdb = [
"duckdb==1.1.3"
]
polars = [
"polars>=1.8.2"
]
test = [
"pytest",
"pytest-cov",
"pendulum >= 2.1.2"
]
dagster = [
"dagster == 1.9.3"
]
cloud = [
"msgpack == 1.1.0",
]
pdf = [
"fpdf2==2.8.1"
]
daft = [
"getdaft == 0.3.4"
]
all = [
"cuallee[dev,pyspark,pyspark_connect,snowpark,pandas,bigquery,duckdb,polars,test,dagster,cloud,pdf,daft]"
]
[tool.ruff.lint]
# Skip unused variable rules (`F841`).
ignore = ["E731"]
[project.urls]
"Homepage" = "https://github.com/canimus/cuallee"
"Bug Tracker" = "https://github.com/canimus/cuallee"