-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
58 lines (50 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
[tool.poetry]
name = "adbc_flight_sql_driver"
version = "0.0.2"
description = "SQLAlchemy driver for ADBC with an Apache Arrow Flight SQL backend"
authors = ["Philip Moore <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/voltrondata/superset-sqlalchemy-adbc-flight-sql-poc"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/voltrondata/superset-sqlalchemy-adbc-flight-sql-poc/issues"
"Changelog" = "https://github.com/voltrondata/superset-sqlalchemy-adbc-flight-sql-poc/releases"
[tool.poetry.dependencies]
python = ">=3.9"
sqlalchemy = "^1.4.46"
numpy = "^1.24.2"
psycopg2 = "^2.9.5"
pyarrow = "^12.0.0"
adbc-driver-manager = "^0.3.0"
adbc-driver-flightsql = "^0.3.0"
sqlparse = "0.4.3"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
pre-commit = "^2.20.0"
pdbpp = "^0.10.3"
mypy = "^0.991"
hypothesis = "^6.61.0"
pandas = "^1"
ipython-sql = "^0.4.1"
sqlalchemy = {version="^1.4.46", extras=['mypy']}
snapshottest = "^0.6.0"
[tool.poetry.plugins."sqlalchemy.dialects"]
adbc_flight_sql = "adbc_flight_sql_driver:Dialect"
[tool.pytest.ini_options]
addopts = "--hypothesis-show-statistics"
xfail_strict = true
[tool.mypy]
ignore_missing_imports = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
warn_redundant_casts = true
warn_unused_ignores = true
plugins = ['sqlalchemy.ext.mypy.plugin']
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"