-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
124 lines (113 loc) · 3.01 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
115
116
117
118
119
120
121
122
123
124
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.setuptools.packages.find]
include = ["pointblank"]
[project]
name = "pointblank"
description = "Find out if your data is what you think it is."
readme = "README.md"
keywords = ["data", "quality", "validation", "testing", "data science", "data engineering"]
license.file = "LICENSE"
authors = [
{ name = "Richard Iannone", email = "riannone@me.com" }
]
dynamic = ["version"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"commonmark>=0.9.1",
"importlib-metadata",
"great_tables>=0.13.0",
"narwhals>=1.18.4",
"typing_extensions>=3.10.0.0",
]
requires-python = ">=3.10"
[project.optional-dependencies]
pd = [
"pandas>=2.2.3",
]
pl = [
"polars>=1.17.1",
]
duckdb = [
"ibis-framework[duckdb]>=9.5.0",
]
mysql = [
"ibis-framework[mysql]>=9.5.0",
]
postgres = [
"ibis-framework[postgres]>=9.5.0",
]
sqlite = [
"ibis-framework[sqlite]>=9.5.0",
]
docs = [
"jupyter",
"nbclient>=0.10.0",
"nbformat>=5.10.4",
"quartodoc>=0.8.1; python_version >= '3.9'",
"pandas>=2.2.3",
"polars>=1.17.1",
]
[dependency-groups]
dev = [
"black",
"duckdb>=1.1.3",
"griffe==0.38.1",
"ibis-framework[duckdb,mysql,postgres,sqlite]>=9.5.0",
"jupyter",
"nbclient>=0.10.0",
"nbformat>=5.10.4",
"pandas>=2.2.3",
"polars>=1.17.1",
"pre-commit==2.15.0",
"pyarrow",
"pyright>=1.1.244",
"pytest>=3",
"pytest-cov",
"pytest-snapshot",
"quartodoc>=0.8.1; python_version >= '3.9'",
]
[project.urls]
homepage = "https://github.com/rich-iannone/pointblank"
[tool.flake8]
exclude = ["docs", ".venv", "tests/*"]
ignore = [
"E402", # module level import not at top of file
"E501", # line too long (maximum 100 characters)
"W503", # line break before binary operator
"F811", # redefinition of unused name
"E203", # whitespace before ':'
"F401", # 'module' imported but unused
"F841", # local variable 'name' is assigned to but never used
"E702", # multiple statements on one line (semicolon)
"E704", # multiple statements on one line (def)
]
max-line-length = 100
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra --cov=pointblank"
asyncio_mode = "strict"
asyncio_default_fixture_loop_scope = "function"
testpaths = [
"tests"
]
[tool.black]
line-length = 100