-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.34 KB
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
[project]
name = "flydelta"
version = "0.0.3"
description = "A Flight SQL proxy for Delta Lake"
authors = [{ name = "Simon Wörpel", email = "simon.woerpel@pm.me" }]
license = "AGPLv3+"
readme = "README.md"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.11,<4"
dependencies = [
"pyarrow (>=23.0.0,<24.0.0)",
"typer (>=0.17)",
"rich (>=10.0.0,<15.0.0)",
"pandas (>=3.0.0,<4.0.0)",
]
[project.optional-dependencies]
server = [
"deltalake (>=1.4.1,<2.0.0)",
"duckdb (>=1.5.2,<2.0.0)",
]
[project.scripts]
flydelta = "flydelta.cli:cli"
[project.urls]
Homepage = "https://github.com/dataresearchcenter/flydelta"
Repository = "https://github.com/dataresearchcenter/flydelta"
Issues = "https://github.com/dataresearchcenter/flydelta/issues"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.2"
pytest-cov = ">=4.1,<8.0"
black = ">=23.11,<27.0"
isort = "^8.0.1"
mypy = "^1.17.1"
pre-commit = "^4.0.1"
flake8 = ">=6.1,<8.0"
ipdb = "^0.13.13"
bump2version = "^1.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"