-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
295 lines (273 loc) · 6.91 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=42", # At least v42 of setuptools required.
"versioningit",
]
[project]
name = "sqlalchemy-cratedb"
description = "SQLAlchemy dialect for CrateDB."
readme = "README.md"
keywords = [
"CrateDB",
"dask",
"data io",
"orm",
"pandas",
"PostgreSQL",
"rdbms",
"sql",
"SQLAlchemy",
]
license = { text = "Apache License 2.0" }
authors = [
{ name = "Crate.io", email = "office@crate.io" },
]
requires-python = ">=3.6"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Intended Audience :: Customer Service",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: SQL",
"Topic :: Adaptive Technologies",
"Topic :: Communications",
"Topic :: Database",
"Topic :: Documentation",
"Topic :: Education",
"Topic :: Internet",
"Topic :: Office/Business",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Pre-processors",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Version Control",
"Topic :: System :: Archiving",
"Topic :: System :: Benchmark",
"Topic :: System :: Clustering",
"Topic :: System :: Distributed Computing",
"Topic :: System :: Logging",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
"Topic :: Text Processing",
"Topic :: Utilities",
]
dynamic = [
"version",
]
dependencies = [
"backports.zoneinfo<1; python_version<'3.9'",
"crate>=1.0.0.dev2,<2",
"geojson<4,>=2.5",
"importlib-resources; python_version<'3.9'",
"sqlalchemy<2.1,>=1",
"verlib2==0.2",
]
optional-dependencies.all = [
"sqlalchemy-cratedb[vector]",
]
optional-dependencies.develop = [
"mypy<1.14",
"poethepoet<0.31",
"pyproject-fmt<2.6",
"ruff<0.8",
"validate-pyproject<0.24",
]
optional-dependencies.doc = [
"crate-docs-theme>=0.26.5",
"sphinx>=3.5,<9",
]
optional-dependencies.release = [
"build<2",
"twine<6",
]
optional-dependencies.test = [
"cratedb-toolkit[testing]",
"dask[dataframe]; python_version<'3.13'",
"pandas<2.3",
"pueblo>=0.0.7",
"pytest<9",
"pytest-cov<7",
"pytest-mock<4",
]
optional-dependencies.vector = [
"numpy",
]
urls.changelog = "https://github.com/crate/sqlalchemy-cratedb/blob/main/CHANGES.md"
urls.documentation = "https://cratedb.com/docs/sqlalchemy-cratedb/"
urls.homepage = "https://cratedb.com/docs/sqlalchemy-cratedb/"
urls.repository = "https://github.com/crate/sqlalchemy-cratedb"
entry-points."sqlalchemy.dialects".crate = "sqlalchemy_cratedb:dialect"
[tool.black]
line-length = 100
[tool.ruff]
line-length = 100
extend-exclude = [
]
lint.select = [
# Builtins
"A",
# Bugbear
"B",
# comprehensions
"C4",
# Pycodestyle
"E",
# eradicate
"ERA",
# Pyflakes
"F",
# isort
"I",
# pandas-vet
"PD",
# return
"RET",
# Bandit
"S",
# print
"T20",
"W",
# flake8-2020
"YTT",
]
lint.extend-ignore = [
# zip() without an explicit strict= parameter
"B905",
# Unnecessary generator (rewrite as a `dict` comprehension)
"C402",
# Unnecessary `map` usage (rewrite using a `set` comprehension)
"C417",
# df is a bad variable name. Be kinder to your future self.
"PD901",
# Unnecessary variable assignment before `return` statement
"RET504",
# Unnecessary `elif` after `return` statement
"RET505",
# Probable insecure usage of temporary file or directory
"S108",
# Possible SQL injection vector through string-based query construction
"S608",
]
lint.per-file-ignores."examples/*" = [
"T201", # Allow `print`
]
lint.per-file-ignores."tests/*" = [
"S101", # Allow use of `assert`, and `print`
"S608", # Possible SQL injection vector through string-based query construction
"W291", # Trailing whitespace
"W293", # Blank line contains whitespace
]
[tool.pytest.ini_options]
addopts = """
-rfEXs -p pytester --strict-markers --verbosity=3
--cov --cov-report=term-missing --cov-report=xml
"""
minversion = "2.0"
log_level = "DEBUG"
log_cli_level = "DEBUG"
log_format = "%(asctime)-15s [%(name)-36s] %(levelname)-8s: %(message)s"
pythonpath = [
"src",
]
testpaths = [
"examples",
"sqlalchemy_cratedb",
"tests",
]
python_files = [
"test_*.py",
"*_test.py",
]
xfail_strict = true
markers = [
]
[tool.coverage.paths]
source = [
"src/",
]
[tool.coverage.run]
branch = false
omit = [
"tests/*",
]
[tool.coverage.report]
fail_under = 0
show_missing = true
exclude_lines = [
"# pragma: no cover",
"raise NotImplemented",
]
[tool.mypy]
mypy_path = "src"
packages = [ "sqlalchemy_cratedb" ]
exclude = [
]
check_untyped_defs = true
explicit_package_bases = true
ignore_missing_imports = true
implicit_optional = true
install_types = true
namespace_packages = true
non_interactive = true
# Needed until `mypy-0.990` for `ConverterDefinition` in `converter.py`.
# https://github.com/python/mypy/issues/731#issuecomment-1260976955
# enable_recursive_aliases = true
[tool.versioningit.vcs]
method = "git"
default-tag = "0.0.0"
# ===================
# Tasks configuration
# ===================
[tool.poe.tasks]
check = [
"lint",
"test",
]
format = [
# Format project metadata.
{ cmd = "pyproject-fmt --keep-full-version pyproject.toml" },
# Format code.
# Configure Ruff not to auto-fix a few items that are useful in workbench mode.
# e.g.: unused imports (F401), unused variables (F841), `print` statements (T201), commented-out code (ERA001)
{ cmd = "ruff format" },
{ cmd = "ruff check --fix --ignore=ERA --ignore=F401 --ignore=F841 --ignore=T20 --ignore=ERA001" },
]
lint = [
{ cmd = "ruff format --check" },
{ cmd = "ruff check" },
{ cmd = "validate-pyproject pyproject.toml" },
# { cmd = "mypy" },
]
release = [
{ cmd = "python -m build" },
{ cmd = "twine upload --skip-existing dist/*" },
]
test = [
{ cmd = "pytest" },
{ cmd = "python -m unittest -vvv tests/integration.py" },
]