-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
35 lines (29 loc) · 1 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
[build-system]
# 1.6 introduced a regression which prevents the wheel from building under os-x and windows. So we
# need at least 1.7.
requires = ["cffi", "maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "arrow-odbc"
authors = [{name = "Markus Klein"}]
description="Read the data of an ODBC data source as sequence of Apache Arrow record batches."
readme = "README.md"
license = "MIT"
version = "8.1.1"
# cffi: for communicating with Rust
# pyarrow: to create pyarrow arrays out of the c representation
dependencies = ["cffi", "pyarrow >= 8.0.0"]
[project.optional-dependencies]
test = ["pytest < 8.0.0", "pyodbc", "duckdb"]
[project.urls]
repository = "https://github.com/pacman82/arrow-odbc-py"
changelog = "https://github.com/pacman82/arrow-odbc-py/blob/main/CHANGELOG.md"
[tool.maturin]
# Bindings type
bindings = "cffi"
python-source = "python"
# Not sure what the default would be, best be sure and make release profile explicit
profile = "release"
[tool.ruff]
line-length = 100
[tool.ruff.format]