-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (47 loc) · 1.17 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
[project]
name = "deltalake2db"
version = "0.8.0"
description = ""
authors = [{ name = "Adrian Ehrsam", email = "adrian.ehrsam@bmsuisse.ch" }]
dependencies = [
"deltalake >=0.16.1,<0.19.0,!=0.18.2",
"sqlglot >=22.2.1",
"azure-identity >=1.16.0,<2",
]
requires-python = "~=3.9"
[project.scripts]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pyright]
venv = ".venv"
venvPath = "."
pythonVersion = "3.9"
typeCheckingMode = "basic"
[tool.uv]
native-tls = true
keyring-provider = "subprocess"
[[tool.uv.index]]
name = "BMSAzureDevOps"
url = "https://VssSessionToken@pkgs.dev.azure.com/bmeurope/_packaging/BMS/pypi/simple/"
explicit = true
publish-url = "https://pkgs.dev.azure.com/bmeurope/_packaging/BMS/pypi/upload/"
[dependency-groups]
dev = [
"pyright >=1.1.352,<2",
"polars >=1.12.0,<2",
"duckdb >=1.0.0,<2",
"ruff >=0.4.3",
"adlfs >=2024.4.1,<2025",
]
test = [
"pytest-cov >=4.1.0,<5",
"pytest >=8.1.0,<9",
"polars >=1.12.0,<2",
"duckdb >=1.0.0,<2",
"docker >=7.0.0,<8",
"azure-storage-blob >=12.19.1,<13",
"python-dotenv >=1.0.1,<2",
"pandas >=1.4.2",
"azure-identity >=1.16.0,<2",
]