-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (50 loc) · 1.26 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
[project]
authors = [{ name = "Volker L.", email = "ligno.blades@gmail.com" }]
dependencies = [
"pyarrow>=12.0.1",
"s3fs>=2023.6.0",
"duckdb>=0.10.0",
"tqdm>=4.65.0",
"joblib>=1.3.2",
"pandas>=2.0.3",
"pendulum>=2.1.2", #"msgspec>=0.18.4",
"munch>=4.0.0",
"sqlglot>=23.11.2",
"sqlparse>=0.5.0",
"psutil>=6.0.0",
"pyyaml>=6.0.2",
"loguru>=0.7.2",
"orjson>=3.10.12",
]
description = "poor man´s data lake"
#homepage = "https://github.com/legout/pydala2"
license = { text = "MIT" }
name = "pydala2"
readme = "README.md"
#repository = "https://github.com/legout/pydala2"
requires-python = ">= 3.10"
version = "0.9.7"
[project.optional-dependencies]
legacy = ["polars-lts-cpu>=0.20.4"]
standard = ["polars>=0.20.4"]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling==1.26.3", "hatch-vcs"]
# [build-system]
# build-backend = "setuptools.build_meta"
# requires = ["setuptools>=42", "wheel"]
[tool.rye]
dev-dependencies = [
"ipython>=8.26.0",
"isort>=5.13.2",
"deltalake>=0.20.2",
"datafusion>=42.0.0",
"ibis-framework[duckdb,polars]>=9.5.0",
"ruff>=0.7.1",
"jupyterlab>=4.3.0",
]
managed = true
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["pydala"]