-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
176 lines (164 loc) · 4.7 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
[tool.poetry]
name = "ibis-substrait"
version = "4.0.1"
packages = [{ include = "ibis_substrait" }]
homepage = "https://github.com/ibis-project/ibis-substrait"
repository = "https://github.com/ibis-project/ibis-substrait"
description = "Subtrait compiler for ibis"
authors = ["Ibis Contributors"]
maintainers = ["Ibis Contributors"]
license = "Apache-2.0"
readme = "README.md"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
[tool.poetry.dependencies]
python = ">=3.9,<4"
ibis-framework = ">=9,<10"
packaging = ">=21.3"
pyyaml = ">=5"
substrait = ">=0.2.1"
[tool.poetry.group.dev.dependencies]
ipython = ">=8.2.0"
ruff = ">=0.0.252"
setuptools = ">=67.0.0"
[tool.poetry.group.types.dependencies]
mypy = "^1.3"
mypy-protobuf = "^3.3.0"
types-protobuf = "^3.20.1"
types-pytz = ">=2022.0.0"
types-pyyaml = ">=6.0.12.8"
typing-extensions = ">=4"
[tool.poetry.group.test.dependencies]
datafusion = "^41.0.0"
duckdb = ">=0.8.1"
pytest = "^8.0.0"
pytest-clarity = "^1.0.1"
pytest-cov = "^6.0.0"
pytest-mock = "^3.6.1"
pytest-randomly = "^3.10.1"
pytz = "^2022.1"
pathspec = "0.12.1"
pyarrow = ">=11.0.0"
pytest-snapshot = "^0.9.0"
[tool.ruff]
line-length = 88
respect-gitignore = true
target-version = "py39"
[tool.ruff.lint]
select = [
"B", # flake8-bugbear
"BLE", # flake8-blind-except
"C4", # comprehensions
"D", # pydocstyle
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"ICN", # flake8-import-conventions
"ISC", # flake8-implicit-str-concat
"PGH", # pygrep-hooks
"PLC", # pylint
"PLE", # pylint
"PLW", # pylint
"RET", # flake8-return
"RUF", # ruff-specific rules
"SIM", # flake8-simplify
"T10", # flake8-debugger
"T20", # flake8-print
"TID", # flake8-tidy-imports
"UP", # pyupgrade
"W", # pycodestyle
"YTT", # flake8-2020
]
ignore = [
"B904", # raise from e or raise from None in exception handlers
"C408", # dict(...) as literal
"D100", # public module
"D101", # public class
"D102", # public method
"D103", # public function
"D104", # public package
"D105", # magic methods
"D106", # nested class
"D107", # init
"D202", # blank lines after function docstring
"D203", # blank line before class docstring
"D213", # Multi-line docstring summary should start at the second line
"D402", # First line should not be the function's signature
"E501",
"E731",
"ISC001",
"PGH003",
"RET504",
"RET505",
"RET506",
"RET507",
"RET508",
"SIM102", # nested ifs
"SIM108", # convert everything to ternary operator
"SIM114", # combine `if` branches
"SIM117", # nested withs
"SIM118", # remove .keys() calls from dictionaries
"UP006", # use collections.deque instead of Deque for type annotation
"UP007", # Optional[str] -> str | None
]
[tool.ruff.lint.per-file-ignores]
"*test*.py" = ["D"] # ignore all docstring lints in tests
[tool.pytest.ini_options]
xfail_strict = true
addopts = [
"--ignore=site-packages",
"--ignore=dist-packages",
"--ignore=.direnv",
"--strict-markers",
"--doctest-modules",
]
filterwarnings = [
"error",
# older importlib metadata that there's no real point in breaking with
"ignore:SelectableGroups:DeprecationWarning",
"ignore:`parse_type` is deprecated:FutureWarning",
# ibis on postgres + windows
"ignore:locale specific date formats:UserWarning",
# ignore struct pairs deprecation while we still support 4.0
"ignore: `Struct.pairs` is deprecated:FutureWarning",
# ignore output_dtype deprecation until version 7.0 is minimum supported
"ignore:`Value.output_dtype` is deprecated:FutureWarning",
# ignore elementwise deprecation warnings to keep testing them until it's removed
"ignore:`elementwise` is deprecated as of v9.0; use the ibis.udf.* api",
]
markers = ["no_decompile"]
norecursedirs = ["site-packages", "dist-packages", ".direnv"]
[tool.mypy]
exclude = '((tests|docs)/.+|build)\.py'
ignore_missing_imports = true
# untyped things
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_decorators = true
# Any handling
disallow_any_unimported = false
disallow_any_expr = false
disallow_any_decorated = false
disallow_any_explicit = false
disallow_any_generics = false
disallow_subclassing_any = false
# None/Optional handling
no_implicit_optional = true
# show more context on failure
show_error_context = true
show_error_codes = true
[tool.pydocstyle]
inherit = false
convention = "numpy"
match_dir = "ibis_substrait"
add_ignore = ["D100", "D101", "D102", "D103", "D104", "D105"]
[build-system]
requires = ["poetry-core", "setuptools"]
build-backend = "poetry.core.masonry.api"